summaryrefslogtreecommitdiff
path: root/remake.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 /remake.c
parent74fca88bf3cfc802308018faf69b0231876c633c (diff)
downloadgunmake-2fd5b943d10664ddd815348e86b082aa2c5d2bfb.tar.gz
* Implement GNU gettext internationalization support in GNU make.
Diffstat (limited to 'remake.c')
-rw-r--r--remake.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/remake.c b/remake.c
index 182cc8c..4242e2f 100644
--- a/remake.c
+++ b/remake.c
@@ -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)