summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2014-07-14 16:55:04 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2014-07-14 16:55:04 (GMT)
commit4b139169702dec37039869cc4af064c18e6789b8 (patch)
tree23bfe9fa65e81d608e77a4ff93997dbca1df4fec /Source/cmMakefile.cxx
parentc72642f927e65e66f602406380349f928a961e77 (diff)
downloadCMake-4b139169702dec37039869cc4af064c18e6789b8.zip
CMake-4b139169702dec37039869cc4af064c18e6789b8.tar.gz
CMake-4b139169702dec37039869cc4af064c18e6789b8.tar.bz2
cmMakefile: fix __CMAKE_RULE property setting
It got put into the condition by mistake.
Diffstat (limited to 'Source/cmMakefile.cxx')
-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.