summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2012-11-04 00:55:57 +0000
committerPádraig Brady <P@draigBrady.com>2012-11-04 00:57:55 +0000
commit8096ec664173f243e045be065203e6ad1aa1fa75 (patch)
tree75ca547b4f7671d0b557bcfc45c4cf671796a4e3
parentda1329e715250faf950ce497a7d7601845c2b119 (diff)
downloadcoreutils-8096ec664173f243e045be065203e6ad1aa1fa75.tar.xz
maint: fix the error message from sc_check-I18N-AUTHORS
* cfk.mk (sc_check-I18N-AUTHORS): Fix the quoting so you don't get a 'command not found' error.
-rw-r--r--cfg.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/cfg.mk b/cfg.mk
index 46652b017..53295b4c7 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -187,7 +187,7 @@ sc_check-I18N-AUTHORS:
for i in $$(git grep -l -w proper_name_utf8 *.c|sed 's/\.c//'); do \
grep -E "^src_$${i}_LDADD"' .?= .*\$$\(LIBICONV\)' local.mk \
> /dev/null \
- || { "echo $(ME): link rules for $$i do not include" \
+ || { echo "$(ME): link rules for $$i do not include" \
'$$(LIBICONV)' 1>&2; exit 1; }; \
done