summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'file.c')
-rw-r--r--file.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/file.c b/file.c
index f790eb1..a1003a9 100644
--- a/file.c
+++ b/file.c
@@ -635,8 +635,9 @@ print_file (f)
puts (_("# Command-line target."));
if (f->dontcare)
puts (_("# A default or MAKEFILES makefile."));
- printf (_("# Implicit rule search has%s been done.\n"),
- f->tried_implicit ? "" : _(" not"));
+ puts (f->tried_implicit
+ ? _("# Implicit rule search has been done.")
+ : _("# Implicit rule search has not been done."));
if (f->stem != 0)
printf (_("# Implicit/static pattern stem: `%s'\n"), f->stem);
if (f->intermediate)