summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index ad375af..362fa44 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -23,9 +23,12 @@
# If you see no configure script, then run ./autogen.sh to create it
# and procede with the "normal" build procedures.
-for i in . tests
+
+aclocal && autoheader && automake -a && autoconf
+
+for i in tests
do
- cd $i
- autoheader && autoconf
- cd .
+( cd $i
+ aclocal && autoheader && autoconf
+)
done