1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-21 23:00:50 +08:00

cmLocalGenerator: Remove redundant path access.

This commit is contained in:
Stephen Kelly
2015-05-16 08:03:04 +02:00
parent 1933f3d1a3
commit fa9eb814b3

View File

@@ -365,9 +365,8 @@ void cmLocalGenerator::GenerateInstallRules()
// Create the install script file.
std::string file = this->StateSnapshot.GetCurrentBinaryDirectory();
std::string homedir = this->GetState()->GetBinaryDirectory();
std::string currdir = this->StateSnapshot.GetCurrentBinaryDirectory();
int toplevel_install = 0;
if ( currdir == homedir )
if (file == homedir)
{
toplevel_install = 1;
}