Merge topic 'make-NOTPARALLEL-not-PHONY'

3cec0c75 Makefile: Generate .NOTPARALLEL without .PHONY (#14312)
This commit is contained in:
Brad King 2015-02-03 09:46:20 -05:00 committed by CMake Topic Stage
commit 99e3650e66
1 changed files with 1 additions and 1 deletions

View File

@ -1826,7 +1826,7 @@ void cmLocalUnixMakefileGenerator3
std::vector<std::string> no_depends;
this->WriteMakeRule(ruleFileStream,
"Allow only one \"make -f Makefile2\" at a time, but pass parallelism.",
".NOTPARALLEL", no_depends, no_commands, true);
".NOTPARALLEL", no_depends, no_commands, false);
}
}