From 586e3bef5d34d090d9480e146783c33313f9dc34 Mon Sep 17 00:00:00 2001 From: Nokis Mavrogiannopoulos Date: Wed, 20 Feb 2008 18:50:41 +0000 Subject: added tags --- (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index dc16b29..742b2cc 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,9 +1,25 @@ #!/bin/sh -m4/buildconf.py \ - --libtoolize \ - --aclocal \ - --automake \ - --autoconf \ - --autoheader -rm -rf autom4te.cache +if [ -z $ACLOCAL ]; then + ACLOCAL=aclocal +fi +if [ -z $AUTOCONF ]; then + AUTOCONF=autoconf +fi +if [ -z $AUTOHEADER ]; then + AUTOHEADER=autoheader +fi +if [ -z $AUTORECONF ]; then + AUTORECONF=autoreconf +fi + +#rm -rf autom4te.cache +$AUTORECONF -f -i +#touch stamp-h.in + +for x in providers/*; do + if [ -e $x/autogen.sh ]; then + echo Generating Config files in $x + (cd $x; ./autogen.sh $*) + fi +done -- cgit v0.9.2