diff options
author | Ben Elliston <bje@au.ibm.com> | 2007-08-13 01:32:36 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2007-08-13 01:32:36 +0000 |
commit | 2444379b1968f99301793bf4aff81a9cfcbc2590 (patch) | |
tree | 95bde8b5ec94943cb2e34bcc8dbf89c7d202a992 | |
parent | 3dea8fca8b8659aa3888d6b4cc69b6a207e847cf (diff) | |
download | binutils-gdb-2444379b1968f99301793bf4aff81a9cfcbc2590.tar.gz |
* configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
--silent if $silent.
* configure: Regenerate.
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
3 files changed, 19 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index f9b2f46bb47..547d3501c02 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + Ben Elliston <bje@au.ibm.com> + + * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass + --silent if $silent. + * configure: Regenerate. + 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com> * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB. diff --git a/configure b/configure index 1a43f9e69a6..7053cb83349 100755 --- a/configure +++ b/configure @@ -1788,6 +1788,9 @@ do # Add the quoted argument to the list. TOPLEVEL_CONFIGURE_ARGUMENTS="$TOPLEVEL_CONFIGURE_ARGUMENTS $ac_arg" done +if test "$silent" = yes; then + TOPLEVEL_CONFIGURE_ARGUMENTS="$TOPLEVEL_CONFIGURE_ARGUMENTS --silent" +fi # Remove the initial space we just introduced and, as these will be # expanded by make, quote '$'. TOPLEVEL_CONFIGURE_ARGUMENTS=`echo "x$TOPLEVEL_CONFIGURE_ARGUMENTS" | sed -e 's/^x *//' -e 's,\\$,$$,g'` @@ -5663,6 +5666,9 @@ EOF_SED gcc_transform_name=`cat conftestsed.out` rm -f conftestsed.out baseargs="$baseargs --program-transform-name='${gcc_transform_name}'" +if test "$silent" = yes; then + baseargs="$baseargs --silent" +fi # For the build-side libraries, we just need to pretend we're native, # and not use the same cache file. Multilibs are neither needed nor diff --git a/configure.ac b/configure.ac index da88113f068..e9eea64e810 100644 --- a/configure.ac +++ b/configure.ac @@ -101,6 +101,9 @@ do # Add the quoted argument to the list. TOPLEVEL_CONFIGURE_ARGUMENTS="$TOPLEVEL_CONFIGURE_ARGUMENTS $ac_arg" done +if test "$silent" = yes; then + TOPLEVEL_CONFIGURE_ARGUMENTS="$TOPLEVEL_CONFIGURE_ARGUMENTS --silent" +fi # Remove the initial space we just introduced and, as these will be # expanded by make, quote '$'. TOPLEVEL_CONFIGURE_ARGUMENTS=`echo "x$TOPLEVEL_CONFIGURE_ARGUMENTS" | sed -e 's/^x *//' -e 's,\\$,$$,g'` @@ -2178,6 +2181,9 @@ EOF_SED gcc_transform_name=`cat conftestsed.out` rm -f conftestsed.out baseargs="$baseargs --program-transform-name='${gcc_transform_name}'" +if test "$silent" = yes; then + baseargs="$baseargs --silent" +fi # For the build-side libraries, we just need to pretend we're native, # and not use the same cache file. Multilibs are neither needed nor |