diff options
author | Brad King <brad.king@kitware.com> | 2015-03-20 13:47:46 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-03-20 13:47:46 (GMT) |
commit | c3f416726bee2175804b3004641eac6091df796d (patch) | |
tree | d8e407af5067216399a6a4ed6f37e35cf194c991 | |
parent | ac7d8684c56063469b3ee03cd4f5a60a4a01789e (diff) | |
parent | 80afe28a1084d02dc3e010c7a0cabf5258237ddc (diff) | |
download | CMake-c3f416726bee2175804b3004641eac6091df796d.zip CMake-c3f416726bee2175804b3004641eac6091df796d.tar.gz CMake-c3f416726bee2175804b3004641eac6091df796d.tar.bz2 |
Merge topic 'ninja-no-circular-phony'
80afe28a Ninja: Do not generate circular phony rules (#15454)
-rw-r--r-- | Source/cmGlobalNinjaGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx index 69b1a9d..ac7a6eb 100644 --- a/Source/cmGlobalNinjaGenerator.cxx +++ b/Source/cmGlobalNinjaGenerator.cxx @@ -1069,7 +1069,7 @@ void cmGlobalNinjaGenerator::WriteUnknownExplicitDependencies(std::ostream& os) this->WritePhonyBuild(os, "", deps, - deps); + cmNinjaDeps()); } } } |