summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-03-08 15:19:25 (GMT)
committerBrad King <brad.king@kitware.com>2007-03-08 15:19:25 (GMT)
commit00b4eeededcebf2e5779d3a47fca1de130c22c63 (patch)
treea5c3a8e902c066bc85dd4ddfa896726b24a4ee2e /Source/cmLocalUnixMakefileGenerator3.cxx
parentd37577d9e06bfc496df4499fe771e425c20462dc (diff)
downloadCMake-00b4eeededcebf2e5779d3a47fca1de130c22c63.zip
CMake-00b4eeededcebf2e5779d3a47fca1de130c22c63.tar.gz
CMake-00b4eeededcebf2e5779d3a47fca1de130c22c63.tar.bz2
STYLE: Removed unused calls to Convert.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index e86fe57..0f01d90 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1483,8 +1483,6 @@ void cmLocalUnixMakefileGenerator3
std::string recursiveTarget = this->Makefile->GetStartOutputDirectory();
recursiveTarget += "/all";
- dir = this->Convert(recursiveTarget.c_str(),HOME_OUTPUT,MAKEFILE);
-
depends.push_back("cmake_check_build_system");
std::string progressDir = this->Makefile->GetHomeOutputDirectory();
@@ -1521,7 +1519,6 @@ void cmLocalUnixMakefileGenerator3
// Write the clean rule.
recursiveTarget = this->Makefile->GetStartOutputDirectory();
recursiveTarget += "/clean";
- dir = this->Convert(recursiveTarget.c_str(),HOME_OUTPUT,MAKEFILE);
commands.clear();
depends.clear();
commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),
@@ -1540,7 +1537,6 @@ void cmLocalUnixMakefileGenerator3
// Write the preinstall rule.
recursiveTarget = this->Makefile->GetStartOutputDirectory();
recursiveTarget += "/preinstall";
- dir = this->Convert(recursiveTarget.c_str(), HOME_OUTPUT,MAKEFILE);
commands.clear();
depends.clear();
const char* noall =
@@ -1571,8 +1567,6 @@ void cmLocalUnixMakefileGenerator3
commands.clear();
std::string cmakefileName = cmake::GetCMakeFilesDirectoryPostSlash();
cmakefileName += "Makefile.cmake";
- this->Convert(cmakefileName.c_str(),HOME_OUTPUT,
- cmLocalGenerator::MAKEFILE);
std::string runRule =
"$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
runRule += " --check-build-system ";