diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-07-14 16:55:04 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2014-07-14 16:55:04 (GMT) |
commit | 4b139169702dec37039869cc4af064c18e6789b8 (patch) | |
tree | 23bfe9fa65e81d608e77a4ff93997dbca1df4fec | |
parent | c72642f927e65e66f602406380349f928a961e77 (diff) | |
download | CMake-4b139169702dec37039869cc4af064c18e6789b8.zip CMake-4b139169702dec37039869cc4af064c18e6789b8.tar.gz CMake-4b139169702dec37039869cc4af064c18e6789b8.tar.bz2 |
cmMakefile: fix __CMAKE_RULE property setting
It got put into the condition by mistake.
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
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. |