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

cmLocalGenerator: Remove redundant path conversions.

The methods just called store the paths in already-converted form.
This commit is contained in:
Stephen Kelly
2015-05-16 08:02:03 +02:00
parent 9e4b6cc2ce
commit 1933f3d1a3

View File

@@ -366,9 +366,6 @@ void cmLocalGenerator::GenerateInstallRules()
std::string file = this->StateSnapshot.GetCurrentBinaryDirectory();
std::string homedir = this->GetState()->GetBinaryDirectory();
std::string currdir = this->StateSnapshot.GetCurrentBinaryDirectory();
cmSystemTools::ConvertToUnixSlashes(file);
cmSystemTools::ConvertToUnixSlashes(homedir);
cmSystemTools::ConvertToUnixSlashes(currdir);
int toplevel_install = 0;
if ( currdir == homedir )
{