diff options
author | Paul Smith <psmith@gnu.org> | 1999-12-18 17:43:47 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-12-18 17:43:47 +0000 |
commit | af44f16799fa185e2729cda1653c80d29b598642 (patch) | |
tree | eb3a7c2d2fdaff7b27d5c7f37939718538e3fa59 /file.c | |
parent | 1a35bfb45b3dfbd38c583247a90a21c3b10ccafa (diff) | |
download | gunmake-af44f16799fa185e2729cda1653c80d29b598642.tar.gz |
* Fix problems with double-colon rules.
* Fix problems with INTERMEDIATE rules.
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -654,8 +654,8 @@ print_file (f) file_timestamp_sprintf (buf, f->last_mtime); printf (_("# Last modified %s\n"), buf); } - printf (_("# File has%s been updated.\n"), - f->updated ? "" : _(" not")); + puts (f->updated + ? _("# File has been updated.") : _("# File has not been updated.")); switch (f->command_state) { case cs_running: |