STYLE: Removed unused calls to Convert.
This commit is contained in:
parent
d37577d9e0
commit
00b4eeeded
|
@ -1483,8 +1483,6 @@ void cmLocalUnixMakefileGenerator3
|
||||||
std::string recursiveTarget = this->Makefile->GetStartOutputDirectory();
|
std::string recursiveTarget = this->Makefile->GetStartOutputDirectory();
|
||||||
recursiveTarget += "/all";
|
recursiveTarget += "/all";
|
||||||
|
|
||||||
dir = this->Convert(recursiveTarget.c_str(),HOME_OUTPUT,MAKEFILE);
|
|
||||||
|
|
||||||
depends.push_back("cmake_check_build_system");
|
depends.push_back("cmake_check_build_system");
|
||||||
|
|
||||||
std::string progressDir = this->Makefile->GetHomeOutputDirectory();
|
std::string progressDir = this->Makefile->GetHomeOutputDirectory();
|
||||||
|
@ -1521,7 +1519,6 @@ void cmLocalUnixMakefileGenerator3
|
||||||
// Write the clean rule.
|
// Write the clean rule.
|
||||||
recursiveTarget = this->Makefile->GetStartOutputDirectory();
|
recursiveTarget = this->Makefile->GetStartOutputDirectory();
|
||||||
recursiveTarget += "/clean";
|
recursiveTarget += "/clean";
|
||||||
dir = this->Convert(recursiveTarget.c_str(),HOME_OUTPUT,MAKEFILE);
|
|
||||||
commands.clear();
|
commands.clear();
|
||||||
depends.clear();
|
depends.clear();
|
||||||
commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),
|
commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),
|
||||||
|
@ -1540,7 +1537,6 @@ void cmLocalUnixMakefileGenerator3
|
||||||
// Write the preinstall rule.
|
// Write the preinstall rule.
|
||||||
recursiveTarget = this->Makefile->GetStartOutputDirectory();
|
recursiveTarget = this->Makefile->GetStartOutputDirectory();
|
||||||
recursiveTarget += "/preinstall";
|
recursiveTarget += "/preinstall";
|
||||||
dir = this->Convert(recursiveTarget.c_str(), HOME_OUTPUT,MAKEFILE);
|
|
||||||
commands.clear();
|
commands.clear();
|
||||||
depends.clear();
|
depends.clear();
|
||||||
const char* noall =
|
const char* noall =
|
||||||
|
@ -1571,8 +1567,6 @@ void cmLocalUnixMakefileGenerator3
|
||||||
commands.clear();
|
commands.clear();
|
||||||
std::string cmakefileName = cmake::GetCMakeFilesDirectoryPostSlash();
|
std::string cmakefileName = cmake::GetCMakeFilesDirectoryPostSlash();
|
||||||
cmakefileName += "Makefile.cmake";
|
cmakefileName += "Makefile.cmake";
|
||||||
this->Convert(cmakefileName.c_str(),HOME_OUTPUT,
|
|
||||||
cmLocalGenerator::MAKEFILE);
|
|
||||||
std::string runRule =
|
std::string runRule =
|
||||||
"$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
|
"$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
|
||||||
runRule += " --check-build-system ";
|
runRule += " --check-build-system ";
|
||||||
|
|
Loading…
Reference in New Issue