[cmake-commits] king committed cmLocalUnixMakefileGenerator3.cxx 1.193 1.194

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Mar 8 10:19:28 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv7062

Modified Files:
	cmLocalUnixMakefileGenerator3.cxx 
Log Message:
STYLE: Removed unused calls to Convert.


Index: cmLocalUnixMakefileGenerator3.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalUnixMakefileGenerator3.cxx,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -d -r1.193 -r1.194
--- cmLocalUnixMakefileGenerator3.cxx	28 Feb 2007 19:29:26 -0000	1.193
+++ cmLocalUnixMakefileGenerator3.cxx	8 Mar 2007 15:19:25 -0000	1.194
@@ -1483,8 +1483,6 @@
   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 @@
   // 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 @@
   // 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 @@
   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 ";



More information about the Cmake-commits mailing list