summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-01-29 14:01:39 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-01-29 14:01:39 (GMT)
commitb9f2bd103b668b0e135f7673bb82f68f6d49bee9 (patch)
tree97c544ba7f2c84f20d5d5982d3ec897dae1a1a61 /Source
parenteea07a2f64f25fab7a29a01d1539c5f6dc2ad289 (diff)
downloadCMake-b9f2bd103b668b0e135f7673bb82f68f6d49bee9.zip
CMake-b9f2bd103b668b0e135f7673bb82f68f6d49bee9.tar.gz
CMake-b9f2bd103b668b0e135f7673bb82f68f6d49bee9.tar.bz2
ENH: remove depend on CMakeCache for rebuild_cache target to avoid double rebuild cache
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalUnixMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx
index 53e89fd..2dc584a 100644
--- a/Source/cmLocalUnixMakefileGenerator.cxx
+++ b/Source/cmLocalUnixMakefileGenerator.cxx
@@ -2583,7 +2583,7 @@ void cmLocalUnixMakefileGenerator::OutputMakeRules(std::ostream& fout)
this->OutputMakeRule(fout,
"CMakeCache.txt",
"rebuild_cache",
- "$(CMAKE_BINARY_DIR)/CMakeCache.txt",
+ 0,
"$(CMAKE_COMMAND) "
"-H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");