diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-04 21:09:46 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-04 21:09:46 (GMT) |
commit | c34b1b48fcc3a766d5e3237db023994507d5dfc5 (patch) | |
tree | d71a3d6c7f7cc1c2419cc73e1f0bc651aa7c10b0 /Source/cmDependsFortran.cxx | |
parent | 5050706ae393bf2c10a5279ddc23613775ad9b3b (diff) | |
download | CMake-c34b1b48fcc3a766d5e3237db023994507d5dfc5.zip CMake-c34b1b48fcc3a766d5e3237db023994507d5dfc5.tar.gz CMake-c34b1b48fcc3a766d5e3237db023994507d5dfc5.tar.bz2 |
ENH: do not depend on touch being on the system
Diffstat (limited to 'Source/cmDependsFortran.cxx')
-rw-r--r-- | Source/cmDependsFortran.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index e44255d..fd6b968 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -222,7 +222,7 @@ bool cmDependsFortran::WriteDependencies(const char *src, const char *obj, makeDepends << "\t$(CMAKE_COMMAND) -E cmake_copy_f90_mod " << i->c_str() << " " << m.c_str() << ".mod.stamp\n"; } - makeDepends << "\t@touch " << obj << ".provides.build\n"; + makeDepends << "\t$(CMAKE_COMMAND) -E touch " << obj << ".provides.build\n"; } /* |