#!/bin/sh if [ -z $ACLOCAL ]; then ACLOCAL=aclocal-1.5 fi if [ -z $AUTOCONF ]; then AUTOCONF=autoconf-2.53 fi if [ -z $AUTOHEADER ]; then AUTOHEADER=autoheader-2.53 fi rm -rf autom4te-2.53.cache $ACLOCAL -I m4 $AUTOHEADER $AUTOCONF 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