summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2000-01-22 08:57:17 +0000
committerPaul Smith <psmith@gnu.org>2000-01-22 08:57:17 +0000
commit2fd5b943d10664ddd815348e86b082aa2c5d2bfb (patch)
treecbaa9ce561306ae1d2c547d25d66c1494fbed0a2 /file.c
parent74fca88bf3cfc802308018faf69b0231876c633c (diff)
downloadgunmake-2fd5b943d10664ddd815348e86b082aa2c5d2bfb.tar.gz
* Implement GNU gettext internationalization support in GNU make.
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)