diff options
author | Reinhard Tartler <siretart@tauware.de> | 2006-08-27 12:05:26 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2006-08-27 12:05:26 +0200 |
commit | c03dcf9e9da07503c6ef0389b2311ebfa26b79c3 (patch) | |
tree | 3c119712b307d743c6ac5412fe8a936263c3f51d | |
parent | 7ea355421e25c91dd46235f49246c6a21bdeae2b (diff) | |
download | lcd4linux-c03dcf9e9da07503c6ef0389b2311ebfa26b79c3.tar.gz |
beautify bootstrap shellscript
-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 |