diff options
author | Jim Meyering <meyering@redhat.com> | 2007-10-25 09:06:29 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2007-10-25 09:06:29 +0200 |
commit | 3c6e338b0fab1405ce32b18d89431888ed62d909 (patch) | |
tree | 063bf9732e69a918012985866baa95ee412add20 /bootstrap | |
parent | 35eca590ad490d6f2b53b8a2e7dd0ce2fbabe710 (diff) | |
download | coreutils-3c6e338b0fab1405ce32b18d89431888ed62d909.tar.gz coreutils-3c6e338b0fab1405ce32b18d89431888ed62d909.tar.bz2 coreutils-3c6e338b0fab1405ce32b18d89431888ed62d909.zip |
Remove vestiges of cvs-gnulib-checkout process. Now we use git.
* bootstrap: Remove support for now-unnecessary option, --cvs-user,
and envvars CVS_USER, CVS_RSH.
2007-10-24 Micah Cowan <micah@cowan.name>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -48,8 +48,6 @@ Options: --force Attempt to bootstrap even if the sources seem not to have been checked out. --skip-po Do not download po files. - --cvs-user=USERNAME Set the username to use when checking out - sources from the gnulib repository. If the file bootstrap.conf exists in the current working directory, its contents are read as shell variables to configure the bootstrap. @@ -159,8 +157,6 @@ do exit;; --gnulib-srcdir=*) GNULIB_SRCDIR=`expr "$option" : '--gnulib-srcdir=\(.*\)'`;; - --cvs-user=*) - CVS_USER=`expr "$option" : '--cvs-user=\(.*\)'`;; --skip-po) SKIP_PO=t;; --force) @@ -226,20 +222,6 @@ case ${GNULIB_SRCDIR--} in if [ ! -d gnulib ]; then echo "$0: getting gnulib files..." - case ${CVS_AUTH-pserver} in - pserver) - CVS_PREFIX=':pserver:anonymous@';; - ssh) - CVS_PREFIX="$CVS_USER${CVS_USER+@}";; - *) - echo "$0: $CVS_AUTH: Unknown CVS access method" >&2 - exit 1;; - esac - - case $CVS_RSH in - '') CVS_RSH=ssh; export CVS_RSH;; - esac - trap cleanup_gnulib 1 2 13 15 git clone --depth 2 git://git.sv.gnu.org/gnulib || |