diff options
author | Brad King <brad.king@kitware.com> | 2010-12-06 21:43:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-12-06 21:43:04 (GMT) |
commit | 5622a16f1fe595512e6031b7d211a18e62532e5f (patch) | |
tree | f48f404bad476785385385f05636e1afdd757c53 /Source/cmMakefileTargetGenerator.cxx | |
parent | afc8906468bb09a934442bdbdcb86d9f40926e75 (diff) | |
download | CMake-5622a16f1fe595512e6031b7d211a18e62532e5f.zip CMake-5622a16f1fe595512e6031b7d211a18e62532e5f.tar.gz CMake-5622a16f1fe595512e6031b7d211a18e62532e5f.tar.bz2 |
Make Fortran $obj.provides.build targets not .PHONY
Commit 60cd72d0 (Cleaned up generation of symbolic rules, 2006-02-15)
incorrectly made these Makefile targets .PHONY even though the build
rule touches an actual file. Correct it so that the copy_f90_mod and
touch steps do not happen on every "make".
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 6b290ab..969cfdb 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -849,7 +849,7 @@ cmMakefileTargetGenerator p_depends.push_back(relativeObj); this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, 0, temp.c_str(), p_depends, no_commands, - true); + false); } //---------------------------------------------------------------------------- |