summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2010-10-25 12:03:27 +0200
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2010-10-25 12:03:27 +0200
commitf2a0643f55af5ac826c65706ee133dd251bccd05 (patch)
tree3461e620e6ebfd5b7d46c98628a13f8530e8b3a9 /autogen.sh
parent0d32c5c070f817229110f92d7b31df9a3e4eeec5 (diff)
Rollback to fix commit history
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh19
1 files changed, 16 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index 9669bfb..d65b0b7 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,18 @@
#!/bin/sh
-mkdir -p m4
-autoreconf -fi
-rm -rf autom4te.cache
+run ()
+{
+ echo "running: $*"
+ eval $*
+
+ if test $? != 0 ; then
+ echo "error: while running '$*'"
+ exit 1
+ fi
+}
+
+run aclocal
+run autoheader
+run libtoolize -f
+run automake -a
+run autoconf