summaryrefslogtreecommitdiff
path: root/remake.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2002-04-20 19:25:54 +0000
committerPaul Smith <psmith@gnu.org>2002-04-20 19:25:54 +0000
commitdad29566b34017a548ba56469147a5398c3334df (patch)
tree7bdd3704b8b96a8919959fb1ce20f971ae6a1cd4 /remake.c
parentd242ee90535385a33f5b32069220d8f547a52373 (diff)
downloadgunmake-dad29566b34017a548ba56469147a5398c3334df.tar.gz
Updates to translaations.
Fix an assert() in an obscure use of -q Handling of double-colon timestamp updates was broken in a bizarre way. Store arguments to $(call ...) functions in simple variables, not recursive variables.
Diffstat (limited to 'remake.c')
-rw-r--r--remake.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/remake.c b/remake.c
index 029cd91..ae5f37c 100644
--- a/remake.c
+++ b/remake.c
@@ -767,7 +767,7 @@ notice_finished_file (file)
/* Propagate the change of modification time to all the double-colon
entries for this file. */
- for (f = file->double_colon; f != 0; f = f->next)
+ for (f = file->double_colon; f != 0; f = f->prev)
f->last_mtime = file->last_mtime;
}