diff options
author | Reinhard Tartler <siretart@tauware.de> | 2006-08-27 12:20:33 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2006-08-27 12:20:33 +0200 |
commit | b6a0ad7c5fb2fd9ba723bd7eaafe11be397f989f (patch) | |
tree | 7ac953088c2aacbd056a103889affcc649290dfd /bootstrap | |
parent | e65d028d30a2f279aca91e80d9dfc59ed3e6ef94 (diff) | |
parent | c8c20c41a94e5635aad5f7fb2a7fc1b36fe42327 (diff) | |
download | lcd4linux-b6a0ad7c5fb2fd9ba723bd7eaafe11be397f989f.tar.gz |
merge new bootstrapping, fixing python compilation
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 |