diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2007-08-13 01:24:29 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2007-08-13 11:24:29 +1000 |
commit | d9acb717f1469f8fdee0a134cb046b22f5cacd10 (patch) | |
tree | dadc8542699d5324256bcac1657e84c15bc63c8b | |
parent | 22a19ceb46f9b60174253d7db1417821a54d0e3f (diff) | |
download | gcc-d9acb717f1469f8fdee0a134cb046b22f5cacd10.zip gcc-d9acb717f1469f8fdee0a134cb046b22f5cacd10.tar.gz gcc-d9acb717f1469f8fdee0a134cb046b22f5cacd10.tar.bz2 |
configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass --silent if $silent.
* configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
--silent if $silent.
* configure: Regenerate.
Co-Authored-By: Ben Elliston <bje@au.ibm.com>
From-SVN: r127390
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
3 files changed, 19 insertions, 0 deletions
@@ -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. + 2003-08-12 Zdenek Dvorak <ook@ucw.cz> * MAINTAINERS (Various Maintainers): Add myself as @@ -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 2500cc6..8f957f4 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 |