summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2001-07-24 16:44:35 +0000
committerWill Estes <wlestes@users.sourceforge.net>2001-07-24 16:44:35 +0000
commitbb256b356dbb739de0c6ff92279bffc7f936b5e4 (patch)
tree0658dc867d5af82780274fd7a07ee243b9f2bd21 /autogen.sh
parentef9e88e955a3b603357183ca2a6c1ed074f618ab (diff)
adjust to automake's idea of the world
Diffstat (limited to 'autogen.sh')
-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