diff options
author | John Polstra <jdp@FreeBSD.org> | 2000-01-12 05:26:45 +0000 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 2000-01-12 05:26:45 +0000 |
commit | 30dc8072b7b51df339649915c2544dff3f349b66 (patch) | |
tree | 8eef0b34582a5e07dc98c9dec593f7676399fbf8 /net/cvsup-mirror | |
parent | Disable the i860 driver. It does not compile. (diff) |
Pass the "-b base" option when running cvsup, so it will work even
if installed somewhere other than /usr/local.
Submitted by: Dag-Erling Smorgrav <des@yes.no>
Notes
Notes:
svn path=/head/; revision=24668
Diffstat (limited to 'net/cvsup-mirror')
-rw-r--r-- | net/cvsup-mirror/files/update.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/cvsup-mirror/files/update.sh b/net/cvsup-mirror/files/update.sh index 76cd3db2e439..9a51805e118e 100644 --- a/net/cvsup-mirror/files/update.sh +++ b/net/cvsup-mirror/files/update.sh @@ -44,14 +44,14 @@ umask 2 if [ ${host_crypto} = ${host} ]; then echo "Updating from ${host}" - cvsup -1gL 1 -c ${colldir} -h ${host} supfile + cvsup -1gL 1 -b ${base} -c ${colldir} -h ${host} supfile else if [ -d prefixes/FreeBSD-crypto.cvs ]; then echo "Updating from ${host_crypto}" - cvsup -1gL 1 -c ${colldir} -h ${host_crypto} supfile.crypto + cvsup -1gL 1 -b ${base} -c ${colldir} -h ${host_crypto} supfile.crypto fi echo "Updating from ${host}" - cvsup -1gL 1 -c ${colldir} -h ${host} supfile.non-crypto + cvsup -1gL 1 -b ${base} -c ${colldir} -h ${host} supfile.non-crypto fi if [ -f .start_server ]; then |