summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-10-20 19:03:17 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-10-20 19:03:17 (GMT)
commitb7b902e048b119509d03f85d820f1868bfcc63be (patch)
tree951d6fad21d37a239aa54ebbe3c9905e787bf46b /Source
parenta2d4e15ed3cd7b98262b881f7c137a5d2fc41267 (diff)
downloadCMake-b7b902e048b119509d03f85d820f1868bfcc63be.zip
CMake-b7b902e048b119509d03f85d820f1868bfcc63be.tar.gz
CMake-b7b902e048b119509d03f85d820f1868bfcc63be.tar.bz2
BUG: fix for def files and new local target link lines
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index c72cfa6..0994486 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1146,7 +1146,7 @@ cmLocalUnixMakefileGenerator3
"$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
runRule += " --check-build-system ";
runRule += this->Convert(cmakefileName.c_str(),NONE,SHELL);
- runRule += " 0";
+ runRule += " 1";
std::vector<std::string> no_depends;
std::vector<std::string> commands;
@@ -1523,7 +1523,7 @@ cmLocalUnixMakefileGenerator3
extraFlags += " ";
extraFlags += m_Makefile->GetSafeDefinition("CMAKE_LINK_DEF_FILE_FLAG");
extraFlags +=
- this->Convert((*i)->GetFullPath().c_str(),HOME_OUTPUT,MAKEFILE);
+ this->Convert((*i)->GetFullPath().c_str(),START_OUTPUT,MAKEFILE);
}
}
}