From: Jim Meyering Date: Sat, 14 Oct 2006 09:39:34 +0000 (+0000) Subject: * Makefile.maint (cvs-update): Use $(CVS), not "cvs". X-Git-Tag: COREUTILS-6_4~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e2c177710ac5d3a8297f511f759e343c4959cb23;p=thirdparty%2Fcoreutils.git * Makefile.maint (cvs-update): Use $(CVS), not "cvs". --- diff --git a/ChangeLog b/ChangeLog index f63388ab43..82c94fab52 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2006-10-14 Jim Meyering + * Makefile.maint (cvs-update): Use $(CVS), not "cvs". + Work also when the working directory (with e.g. coreutils sources) is version controlled with git, rather than CVS. * bootstrap (CVS_only_file): Test for the existence of README-cvs, diff --git a/Makefile.maint b/Makefile.maint index 693b337117..692919208c 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -580,7 +580,7 @@ cvs-update: fail=; \ for f in $(cvs_files); do \ test -f $$f || { echo "*** skipping $$f" 1>&2; continue; }; \ - cvs diff $$f > /dev/null \ + $(CVS) diff $$f > /dev/null \ || { echo "*** $$f is locally modified; skipping it" 1>&2; \ fail=yes; continue; }; \ file=$$(basename $$f); \