From: Akim Demaille Date: Fri, 3 Aug 2001 09:15:59 +0000 (+0000) Subject: Thinko. X-Git-Tag: BISON-1_28b~5 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/df3b6776d3a9ebb6c5203e2888d12283e97470ce?ds=inline Thinko. --- diff --git a/Makefile.maint b/Makefile.maint index e5f5af21..69fbbd24 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -77,10 +77,10 @@ cvs-tag-check: else :; fi cvs-diff-check: - cvs diff | grep -v '^?' >cvs-diffs - if grep . cvs-diff >dev/null; then \ - echo "Some files are locally modified:" 1>&2; \ - cat cvs-diffs; \ + cvs diff | grep -v '^?' >cvs-diffs; \ + if grep . cvs-diff >/dev/null; then \ + echo "Some files are locally modified:" >&2; \ + cat cvs-diffs >&2; \ exit 1; \ else \ rm cvs-diffs; \