maint: fix the error message from sc_check-I18N-AUTHORS
authorPádraig Brady <P@draigBrady.com>
Sun, 4 Nov 2012 00:55:57 +0000 (00:55 +0000)
committerPádraig Brady <P@draigBrady.com>
Sun, 4 Nov 2012 00:57:55 +0000 (00:57 +0000)
* cfk.mk (sc_check-I18N-AUTHORS): Fix the quoting so
you don't get a 'command not found' error.

cfg.mk

diff --git a/cfg.mk b/cfg.mk
index 46652b0..53295b4 100644 (file)
--- 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