X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=autogen.sh;fp=autogen.sh;h=f851875cab1db911e683eb93339d0d4b3a9240a0;hb=31486ed41d761f8c8d93f595bacc0bd78aa0facb;hp=bc99b2d1afcb7715290a3ced31dc642e0cfebaa5;hpb=bb613f133af667f30f3c35e20516f2e901071a4f;p=lilypond.git diff --git a/autogen.sh b/autogen.sh index bc99b2d1af..f851875cab 100755 --- a/autogen.sh +++ b/autogen.sh @@ -35,28 +35,29 @@ if test -z "$autoconf"; then exit 1 fi -if test -z "$*"; then - echo "WARNING: I am going to run \`configure' with no arguments." - echo "If you wish to pass any to it, please specify them on the" - echo \`$0\'" command line." - echo -fi - -for coin in $srcdir/configure.in #`find $srcdir -name configure.in -print` +for i in $srcdir/configure.in #`find $srcdir -name configure.in -print` do - dr=`dirname $coin` - echo processing $dr + dir=`dirname $i` + echo processing $dir ( - cd $dr + cd $dir echo "Running autoconf ..." $autoconf ) done #conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c -if test -z "$NOCONFIGURE"; then - echo Running $srcdir/configure $conf_flags "$@" ... - $srcdir/configure $conf_flags "$@" -else - echo Skipping configure process. +if test -n "$NOCONFIGURE"; then + echo Skipping configure process. + exit 0 fi + +if test -z "$*"; then + echo "warning: about to run \`./configure' without arguments." + echo "arguments on the \`$0\'" + echo "command line will be passed to \`./configure'." + echo +fi + +echo Running $srcdir/configure $conf_flags "$@" ... +$srcdir/configure $conf_flags "$@"