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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user