diff options
author | Jim Meyering <jim@meyering.net> | 2006-10-14 09:39:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-10-14 09:39:34 +0000 |
commit | e2c177710ac5d3a8297f511f759e343c4959cb23 (patch) | |
tree | 88832172fe89a91ab8ff54dc1c643912fb66db26 | |
parent | 8a2e111207cc9af56e6aafae83d6cba1821e002b (diff) | |
download | coreutils-e2c177710ac5d3a8297f511f759e343c4959cb23.tar.xz |
* Makefile.maint (cvs-update): Use $(CVS), not "cvs".
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makefile.maint | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2006-10-14 Jim Meyering <jim@meyering.net> + * 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 693b33711..692919208 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); \ |