From: Jan Nieuwenhuizen Date: Wed, 3 Mar 2004 10:28:38 +0000 (+0000) Subject: Only issue warning about running configure X-Git-Tag: release/2.1.29~16 X-Git-Url: https://git.donarmstrong.com/?p=lilypond.git;a=commitdiff_plain;h=31486ed41d761f8c8d93f595bacc0bd78aa0facb Only issue warning about running configure without arguments when configure will actually running configure. --- diff --git a/ChangeLog b/ChangeLog index 216bea666d..beaba48fe8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-03-03 Jan Nieuwenhuizen + + * stepmake/autogen.sh: Only issue warning about running configure + without arguments when configure will actually running configure. + 2004-03-03 Han-Wen Nienhuys * scm/new-markup.scm (stack-stencil-line): robustness. 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 "$@" diff --git a/stepmake/autogen.sh b/stepmake/autogen.sh index bc99b2d1af..f851875cab 100755 --- a/stepmake/autogen.sh +++ b/stepmake/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 "$@"