]> gcc.gnu.org Git - gcc.git/commitdiff
configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass --silent if $silent.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 13 Aug 2007 01:24:29 +0000 (01:24 +0000)
committerBen Elliston <bje@gcc.gnu.org>
Mon, 13 Aug 2007 01:24:29 +0000 (11:24 +1000)
* configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
--silent if $silent.
* configure: Regenerate.

Co-Authored-By: Ben Elliston <bje@au.ibm.com>
From-SVN: r127390

ChangeLog
configure
configure.ac

index 1acbcc6d9093eae35410e7011de6bf27a88a279b..09c885905e3f7b0b47cd472e18d9e5d727f8cc18 100644 (file)
--- 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.
+
 2003-08-12  Zdenek Dvorak  <ook@ucw.cz>
 
        * MAINTAINERS (Various Maintainers): Add myself as
index df7479320e40d4fbc1b90caa39fbbcfe2dda1841..7b9cc63c6ede0be9223ff03c92978239ccf15398 100755 (executable)
--- 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
index 2500cc6f35111603315c4a7b2dd5593b8db64275..8f957f4cdcf22bd03250525733eab7bb4a0b1b4a 100644 (file)
@@ -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
This page took 0.123144 seconds and 5 git commands to generate.