X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/32785fcd767c52ce826f8f0ed4232360e458f118..ffc2c34e83af80b4e1cbcbbbbdb7693a338f43a6:/bootstrap diff --git a/bootstrap b/bootstrap index 43fee2c..5ec2dc4 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright © 2011-2012, 2021 Nick Bowler +# Copyright © 2011-2012, 2021-2023 Nick Bowler # # Simple script to get started from a fresh git checkout. # @@ -28,7 +28,19 @@ die() { $GIT submodule update --init || err "Failed to update submodules from git." if test -x $GNULIB/gnulib-tool; then - $GNULIB/gnulib-tool --update -S || die "Failed to update Gnulib." + $GNULIB/gnulib-tool --update -S || die "Failed to update Gnulib." + + exec 3>lib/symfiles.tmp 4&3 ) || die "gnulib-tool failed" + shared_modules=`LC_ALL=C sort -u <&4` + + set x --extract-filelist $shared_modules; shift + ( set -x; $GNULIB/gnulib-tool "$@" >&3 ) || die "gnulib-tool failed" + <&4 grep '^lib/.*[.][^vh][^.]*$' | LC_ALL=C sort -u >lib/symfiles else err "Gnulib sources are not properly installed in $GNULIB/" cat >&2 <<'EOF'