From 1933f3d1a3a2be6949c439e18e03a048ef286be7 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 16 May 2015 08:02:03 +0200 Subject: [PATCH] cmLocalGenerator: Remove redundant path conversions. The methods just called store the paths in already-converted form. --- Source/cmLocalGenerator.cxx | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index ea840c53f1..406b6f8237 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -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 ) {