diff options
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) |