commit 2770ec81e2a543f3924027cac9db87773c73afcf
parent c35c5af5d82ac2cc8686c085dc6debbd895334ff
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Wed, 17 Jun 2020 12:17:22 +0200
build: make a deeper clone of gnulib (when building from git)
This increases the chances that the wanted hash will be present in
the checkout when we haven't changed the hash for a few months.
Reported-by: Félix Piédallu <felix@piedallu.me>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/autogen.sh b/autogen.sh
@@ -30,7 +30,7 @@ modules="
# Make sure the local gnulib git repo is up-to-date.
if [ ! -d "gnulib" ]; then
- git clone --depth=123 ${gnulib_url}
+ git clone --depth=1111 ${gnulib_url}
fi
cd gnulib >/dev/null || exit 1
curr_hash=$(git log -1 --format=%H)