From 4b139169702dec37039869cc4af064c18e6789b8 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 14 Jul 2014 12:55:04 -0400 Subject: [PATCH] cmMakefile: fix __CMAKE_RULE property setting It got put into the condition by mistake. --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 2218e2f05..d3ca34acb 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1042,8 +1042,8 @@ cmMakefile::AddCustomCommandToOutput(const std::vector& 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.