re PR bootstrap/18033 (--disable-aix64 doesn't remove ppc64 from multilib list)
authorDavid Edelsohn <edelsohn@gnu.org>
Thu, 13 Jan 2005 00:47:56 +0000 (00:47 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Thu, 13 Jan 2005 00:47:56 +0000 (19:47 -0500)
        PR bootstrap/18033
        * config-ml.in: Eval option if surrounded by single quotes.

From-SVN: r93244

ChangeLog
config-ml.in

index 6054e15c8f5dc582c99cfa760f8eab2369cf5e1e..2ee267422c3d172d43047eac4764f7855fa6a639 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-12  David Edelsohn  <edelsohn@gnu.org>
+
+       PR bootstrap/18033
+       * config-ml.in: Eval option if surrounded by single quotes.
+
 2005-01-03  Paolo Bonzini  <bonzini@gnu.org>
 
        Revert 2004-12-28 Makefile changes, a better fix will be
index 253e8dd04d9fb3ab440c35b47234a441f4725b66..d644bd2106b3473fc0d1b9bc94fb6ddcd26a1b51 100644 (file)
@@ -108,6 +108,11 @@ ml_realsrcdir=${srcdir}
 ml_verbose=--verbose
 for option in ${ac_configure_args}
 do
+  # strip single quotes surrounding individual options
+  case $option in
+  \'*\') eval option=$option ;;
+  esac
+
   case $option in
   --*) ;;
   -*) option=-$option ;;