diff options
author | Pádraig Brady <P@draigBrady.com> | 2012-11-04 00:55:57 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2012-11-04 00:57:55 +0000 |
commit | 8096ec664173f243e045be065203e6ad1aa1fa75 (patch) | |
tree | 75ca547b4f7671d0b557bcfc45c4cf671796a4e3 | |
parent | da1329e715250faf950ce497a7d7601845c2b119 (diff) | |
download | coreutils-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.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |