]> granicus.if.org Git - flex/commitdiff
we need to do the same thing in each directory
authorWill Estes <wlestes@users.sourceforge.net>
Mon, 23 Jul 2001 21:49:55 +0000 (21:49 +0000)
committerWill Estes <wlestes@users.sourceforge.net>
Mon, 23 Jul 2001 21:49:55 +0000 (21:49 +0000)
autogen.sh

index 560275952bcee5951d17617ede3f0711c3c3995a..ad375af0a60b66abf4d69183b4b451562502e908 100755 (executable)
@@ -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