From: Will Estes Date: Mon, 23 Jul 2001 21:49:55 +0000 (+0000) Subject: we need to do the same thing in each directory X-Git-Tag: flex-2-5-10~291 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=abb21f6d2bffaae695061e0ce2e313b3e3a03692;p=flex we need to do the same thing in each directory --- 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