diff options
author | siretart <siretart@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-09-04 16:33:21 +0000 |
---|---|---|
committer | siretart <siretart@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-09-04 16:33:21 +0000 |
commit | aee3c227e3615b333d582a5b819807b018e99a3c (patch) | |
tree | 931159a1e1b2d40a1049232645aa402bd97c712b /bootstrap | |
parent | bd4bfe2976d3ccc422b103d336670adcaa9b865f (diff) | |
download | lcd4linux-aee3c227e3615b333d582a5b819807b018e99a3c.tar.gz |
[lcd4linux @ 2006-09-04 16:33:21 by siretart]
beautify bootstrap script
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@702 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
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 |