summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-12-18 17:43:47 +0000
committerPaul Smith <psmith@gnu.org>1999-12-18 17:43:47 +0000
commitaf44f16799fa185e2729cda1653c80d29b598642 (patch)
treeeb3a7c2d2fdaff7b27d5c7f37939718538e3fa59 /file.c
parent1a35bfb45b3dfbd38c583247a90a21c3b10ccafa (diff)
downloadgunmake-af44f16799fa185e2729cda1653c80d29b598642.tar.gz
* Fix problems with double-colon rules.
* Fix problems with INTERMEDIATE rules.
Diffstat (limited to 'file.c')
-rw-r--r--file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index 55ca7ee..1ce4b89 100644
--- a/file.c
+++ b/file.c
@@ -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: