diff options
author | joe <joe@FreeBSD.org> | 2001-11-15 21:09:58 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-11-15 21:09:58 +0800 |
commit | a6550715580f6e2a3507917a22d398ca334f9870 (patch) | |
tree | 5e91902eb1e24734e457ce7ca3893736e951998c /CVSROOT | |
parent | 6b67c2162aed5639f3168414512001fc599d9f58 (diff) | |
download | freebsd-ports-gnome-a6550715580f6e2a3507917a22d398ca334f9870.tar.gz freebsd-ports-gnome-a6550715580f6e2a3507917a22d398ca334f9870.tar.zst freebsd-ports-gnome-a6550715580f6e2a3507917a22d398ca334f9870.zip |
Replace a reference that I missed to cvs with $cfg::PROG_CVS.
Submitted by: Mathieu Arnold <arn_mat@club-internet.fr>
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/commitcheck | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/commitcheck b/CVSROOT/commitcheck index 51400a6df235..53fb71428a58 100755 --- a/CVSROOT/commitcheck +++ b/CVSROOT/commitcheck @@ -39,7 +39,7 @@ if (defined($cfg::COMMITCHECK_EXTRA) && $cfg::COMMITCHECK_EXTRA) { # # Ensure the minimum version of cvs is installed. # -my $VERSTR = `/usr/bin/cvs -v`; +my $VERSTR = `$cfg::PROG_CVS -v`; $VERSTR =~ s/.*Concurrent\D*(\S*).*/$1/s; $VERSTR =~ s/\D+/./g; my $VERSION = sprintf "%d%02d%02d%02d\n", split /\./, $VERSTR; |