BUG: fix for def files and new local target link lines

This commit is contained in:
Ken Martin 2005-10-20 15:03:17 -04:00
parent a2d4e15ed3
commit b7b902e048
1 changed files with 2 additions and 2 deletions

View File

@ -1146,7 +1146,7 @@ cmLocalUnixMakefileGenerator3
"$(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 ";
runRule += this->Convert(cmakefileName.c_str(),NONE,SHELL); runRule += this->Convert(cmakefileName.c_str(),NONE,SHELL);
runRule += " 0"; runRule += " 1";
std::vector<std::string> no_depends; std::vector<std::string> no_depends;
std::vector<std::string> commands; std::vector<std::string> commands;
@ -1523,7 +1523,7 @@ cmLocalUnixMakefileGenerator3
extraFlags += " "; extraFlags += " ";
extraFlags += m_Makefile->GetSafeDefinition("CMAKE_LINK_DEF_FILE_FLAG"); extraFlags += m_Makefile->GetSafeDefinition("CMAKE_LINK_DEF_FILE_FLAG");
extraFlags += extraFlags +=
this->Convert((*i)->GetFullPath().c_str(),HOME_OUTPUT,MAKEFILE); this->Convert((*i)->GetFullPath().c_str(),START_OUTPUT,MAKEFILE);
} }
} }
} }