cmLocalGenerator: Remove redundant path access.

This commit is contained in:
Stephen Kelly 2015-05-16 08:03:04 +02:00
parent 1933f3d1a3
commit fa9eb814b3
1 changed files with 1 additions and 2 deletions

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;
}