diff options
author | Paul Smith <psmith@gnu.org> | 2005-04-08 12:51:20 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2005-04-08 12:51:20 +0000 |
commit | 3daf8df6ee835b9edcc068af33ae97910bb8d934 (patch) | |
tree | a90131bc43bd817abd1850df4ade8d58339d3334 /remake.c | |
parent | 4923580e3a5b3d9e7ff29ef1e5a5339cc7619a4b (diff) | |
download | gunmake-3daf8df6ee835b9edcc068af33ae97910bb8d934.tar.gz |
Fix some Savannah bugs.
Updates to docs (still need more work here) and NEWS file.
New language.
Diffstat (limited to 'remake.c')
-rw-r--r-- | remake.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -909,10 +909,10 @@ check_dep (struct file *file, unsigned int depth, ++depth; start_updating (file); - if (!file->intermediate) - /* If this is a non-intermediate file, update it and record - whether it is newer than THIS_MTIME. */ + if (file->phony || !file->intermediate) { + /* If this is a non-intermediate file, update it and record + whether it is newer than THIS_MTIME. */ FILE_TIMESTAMP mtime; dep_status = update_file (file, depth); check_renamed (file); |