summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-15 14:48:17 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-07-15 14:48:17 (GMT)
commit29abb3dedb7eca410083ee1e5424fddd24b1d4d6 (patch)
tree7ea888237ea14017ca00e652285e726df115eb2c
parentd3076b1d51c25f076d3dbde7d94e06078040f124 (diff)
parent4b139169702dec37039869cc4af064c18e6789b8 (diff)
downloadCMake-29abb3dedb7eca410083ee1e5424fddd24b1d4d6.zip
CMake-29abb3dedb7eca410083ee1e5424fddd24b1d4d6.tar.gz
CMake-29abb3dedb7eca410083ee1e5424fddd24b1d4d6.tar.bz2
Merge topic 'dev/fix-cmake-rule-property'
4b139169 cmMakefile: fix __CMAKE_RULE property setting
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 2218e2f..d3ca34a 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -1042,8 +1042,8 @@ cmMakefile::AddCustomCommandToOutput(const std::vector<std::string>& outputs,
if (!file)
{
file = this->CreateSource(outName, true);
- file->SetProperty("__CMAKE_RULE", "1");
}
+ file->SetProperty("__CMAKE_RULE", "1");
}
// Always create the output sources and mark them generated.