diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-01 13:58:00 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-01 13:58:00 (GMT) |
commit | c56547a3f9660aca974ef80431cab8f8e5055185 (patch) | |
tree | e99797bb21fb0ae5f9ee423036da7f77c27b663b /Source/cmLocalUnixMakefileGenerator.cxx | |
parent | 27deb152b6bbc7f76fc040cd9a10224c05b4f9d3 (diff) | |
download | CMake-c56547a3f9660aca974ef80431cab8f8e5055185.zip CMake-c56547a3f9660aca974ef80431cab8f8e5055185.tar.gz CMake-c56547a3f9660aca974ef80431cab8f8e5055185.tar.bz2 |
ENH: Fix preorder. This caused preorder to not work and the test passed because of jump-over rule
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index a22244a..a6aaaf9 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2220,7 +2220,7 @@ void cmLocalUnixMakefileGenerator::OutputSubDirectoryRules(std::ostream& fout) "SUBDIR_PREORDER_BUILD", "default_target", "default_target", - 0, "$(TARGETS)", + 0, 0, SubDirectories, false, 2); this->OutputSubDirectoryVars(fout, "SUBDIR_CLEAN", "clean", |