summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2001-07-23 21:49:55 +0000
committerWill Estes <wlestes@users.sourceforge.net>2001-07-23 21:49:55 +0000
commitabb21f6d2bffaae695061e0ce2e313b3e3a03692 (patch)
tree2215c982406da8a84c8261af06e3aeb2389ca8bc /autogen.sh
parent81f1281dba9cd5914a8891f3dbdd816145350d4a (diff)
we need to do the same thing in each directory
Diffstat (limited to 'autogen.sh')
-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