From 908c3d1793950f01bcc0b7625b664c02c9875498 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Sat, 5 May 2018 10:29:36 +0200 Subject: bootstrap.sh: Do a shallow clone of gnulib We just need some utilities from gnulib, so getting an entire history of changes of the library is pointless. And it also takes more time. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh index 72df194..fa39c2e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,7 +3,7 @@ set -eu if [ ! -d "gnulib" ] && [ $# -gt 0 ] && [ "$1" = "--copy" ]; then - git clone git://git.savannah.gnu.org/gnulib.git gnulib + git clone --depth 1 git://git.savannah.gnu.org/gnulib.git gnulib fi if [ -x "gnulib/gnulib-tool" ]; then -- cgit v1.2.1