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