diff options
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..0ce931c --- /dev/null +++ b/bootstrap @@ -0,0 +1,6 @@ +#!/bin/sh +if ! test -n "$BASH_SOURCE" || ! workdir="${BASH_SOURCE[0]%/*}" || ! test -n "$workdir" || ! cd "$workdir"; then + workdir=`dirname "$0"` && test -n "$workdir" && cd "$workdir" || echo "Warning: can't get working directory" 1>&2 +fi +aclocal -I m4 --install +autoreconf -I m4 -f -i |