diff options
author | Paul Smith <psmith@gnu.org> | 2000-01-22 08:57:17 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-01-22 08:57:17 +0000 |
commit | 2fd5b943d10664ddd815348e86b082aa2c5d2bfb (patch) | |
tree | cbaa9ce561306ae1d2c547d25d66c1494fbed0a2 /file.c | |
parent | 74fca88bf3cfc802308018faf69b0231876c633c (diff) | |
download | gunmake-2fd5b943d10664ddd815348e86b082aa2c5d2bfb.tar.gz |
* Implement GNU gettext internationalization support in GNU make.
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) |