Skip to content

Commit 37c917e

Browse files
committed
Checkout gnulib using 'git' instead of 'cvs'.
1 parent 7bcc67d commit 37c917e

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2009-03-14 Bruno Haible <bruno@clisp.org>
2+
3+
* autogen.sh: Checkout gnulib using 'git' instead of 'cvs'.
4+
15
2009-01-24 Bruno Haible <bruno@clisp.org>
26

37
* tools/Makefile (ALL): Add cp1131.h.

autogen.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
# It also requires either
99
# - the GNULIB_TOOL environment variable pointing to the gnulib-tool script
1010
# in a gnulib checkout, or
11-
# - the cvs program in the PATH and an internet connection.
11+
# - the git program in the PATH and an internet connection.
1212
# It also requires
1313
# - the gperf program.
1414

15-
# Copyright (C) 2003-2008 Free Software Foundation, Inc.
15+
# Copyright (C) 2003-2009 Free Software Foundation, Inc.
1616
#
1717
# This program is free software: you can redistribute it and/or modify
1818
# it under the terms of the GNU General Public License as published by
@@ -46,12 +46,10 @@ done
4646
if test $skip_gnulib = false; then
4747
if test -z "$GNULIB_TOOL"; then
4848
# Check out gnulib in a subdirectory 'gnulib'.
49-
GNULIB_CVS_ROOT=':pserver:anonymous@pserver.git.sv.gnu.org:/gnulib.git'
50-
GNULIB_CVS_REPOSITORY='gnulib'
5149
if test -d gnulib; then
52-
(cd gnulib && cvs update -d -P)
50+
(cd gnulib && git pull)
5351
else
54-
cvs -d "$GNULIB_CVS_ROOT" checkout -d $GNULIB_CVS_REPOSITORY HEAD
52+
git clone git://git.savannah.gnu.org/gnulib.git
5553
fi
5654
# Now it should contain a gnulib-tool.
5755
if test -f gnulib/gnulib-tool; then

0 commit comments

Comments
 (0)