projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da1329e
)
maint: fix the error message from sc_check-I18N-AUTHORS
author
Pádraig Brady
<P@draigBrady.com>
Sun, 4 Nov 2012 00:55:57 +0000
(
00:55
+0000)
committer
Pá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
patch
|
blob
|
history
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