diff options
Diffstat (limited to '')
-rwxr-xr-x | bootstrap | 17 |
1 files changed, 13 insertions, 4 deletions
@@ -1,6 +1,15 @@ -aclocal && \ -# libtoolize --copy --force && \ -autoheader && \ -automake --add-missing --copy --foreign && \ +#!/bin/sh + +# exit on errors +set -e + +# set nicer prompt for tracing +PS4="$0:\$LINENO> " +set -x + +aclocal +# libtoolize --copy --force +autoheader +automake --add-missing --copy --foreign autoconf |