From a61ef9840185c6513f3e8fa8dd7f2f72c6369b95 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Tue, 13 Sep 2011 21:10:01 -0400 Subject: [PATCH 1/1] Use symlinks for gnulib's m4 files. This is nice because it makes it really obvious (when working from git) what files came directly from gnulib. --- bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index fa13580..f0e1d0d 100755 --- a/bootstrap +++ b/bootstrap @@ -4,8 +4,8 @@ trap 'exit 1' USR1 die() { printf '%s\n' "$@" 1>&2; kill -USR1 $$; } git submodule update --init || echo "Failed to update Gnulib sources from git." -if test -x gnulib/gnulib-tool; then - gnulib/gnulib-tool --update || die "Failed to update Gnulib." +if test -x ./gnulib/gnulib-tool; then + ./gnulib/gnulib-tool --update -S || die "Failed to update Gnulib." else die "Gnulib sources are not properly installed in gnulib/." fi -- 2.43.2