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 /remake.c | |
parent | 74fca88bf3cfc802308018faf69b0231876c633c (diff) | |
download | gunmake-2fd5b943d10664ddd815348e86b082aa2c5d2bfb.tar.gz |
* Implement GNU gettext internationalization support in GNU make.
Diffstat (limited to 'remake.c')
-rw-r--r-- | remake.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -264,9 +264,9 @@ static void no_rule_error(file) struct file *file; { - static const char msg_noparent[] + const char *msg_noparent = _("%sNo rule to make target `%s'%s"); - static const char msg_parent[] + const char *msg_parent = _("%sNo rule to make target `%s', needed by `%s'%s"); if (keep_going_flag || file->dontcare) |