From: Nick Bowler Date: Wed, 14 Sep 2011 01:10:01 +0000 (-0400) Subject: Use symlinks for gnulib's m4 files. X-Git-Tag: v1~120 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/a61ef9840185c6513f3e8fa8dd7f2f72c6369b95?hp=0c4ac5243b1fee6b00e4f7119c7c1bd74745efb3 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. --- 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