summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-07-15 07:36:44 +0000
committerPaul Smith <psmith@gnu.org>1999-07-15 07:36:44 +0000
commit9d89ad56bf74b22471617ed99f9e6e6272efba22 (patch)
treeaf9d3782c9aaeb9b7f806157a48f987f2590c637 /main.c
parentadb1632033d58f3570bacaf6d717e8b04199c979 (diff)
downloadgunmake-9d89ad56bf74b22471617ed99f9e6e6272efba22.tar.gz
* Fix up and document $(apply ...) function.
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index cad697a..f9b5abd 100644
--- a/main.c
+++ b/main.c
@@ -1358,7 +1358,7 @@ int main (int argc, char ** argv)
for (p = old_files->list; *p != 0; ++p)
{
f = enter_command_line_file (*p);
- f->last_mtime = (FILE_TIMESTAMP) 1;
+ f->last_mtime = f->mtime_before_update = (FILE_TIMESTAMP) 1;
f->updated = 1;
f->update_status = 0;
f->command_state = cs_finished;
@@ -1369,7 +1369,7 @@ int main (int argc, char ** argv)
for (p = new_files->list; *p != 0; ++p)
{
f = enter_command_line_file (*p);
- f->last_mtime = NEW_MTIME;
+ f->last_mtime = f->mtime_before_update = NEW_MTIME;
}
}