diff options
Diffstat (limited to '')
-rwxr-xr-x | bootstrap | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..93723b7 --- /dev/null +++ b/bootstrap @@ -0,0 +1,18 @@ +#!/bin/sh + +# $Id: bootstrap 1044 2009-09-23 04:34:38Z michael $ +# $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/bootstrap $ + +# 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 + |