1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-13 07:15:50 +02:00

escape a $ in a diagnostic

This commit is contained in:
Jim Meyering
2005-09-13 15:42:45 +00:00
parent 0fafb6d2f1
commit fcbf217aa5

View File

@@ -278,7 +278,7 @@ strftime-check:
# to emit a definition for each substituted variable.
makefile-check:
grep -E '@[A-Z_0-9]+@' `find . -name Makefile.am` \
&& { echo 'Makefile.maint: use $(...), not @...@' 1>&2; exit 1; } || :
&& { echo 'Makefile.maint: use $$(...), not @...@' 1>&2; exit 1; } || :
news-date-check: NEWS
today=`date +%Y-%m-%d`; \