]> git.draconx.ca Git - cdecl99.git/blob - bootstrap
Use symlinks for gnulib's m4 files.
[cdecl99.git] / bootstrap
1 #!/bin/sh
2
3 trap 'exit 1' USR1
4 die() { printf '%s\n' "$@" 1>&2; kill -USR1 $$; }
5
6 git submodule update --init || echo "Failed to update Gnulib sources from git."
7 if test -x ./gnulib/gnulib-tool; then
8         ./gnulib/gnulib-tool --update -S || die "Failed to update Gnulib."
9 else
10         die "Gnulib sources are not properly installed in gnulib/."
11 fi
12
13 autoreconf -fis