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

From-SVN: r93246

ChangeLog
config-ml.in

index 3a0d3bf29814c4ae70e5c396f868ba3ef4a33718..8cede70102f2908da1c0b4615f99b31c4ae0a5bc 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-06  Laurent GUERBY <laurent@guerby.net>
 
        * MAINTAINERS: Update my email address.
index b2e4ea9cf9774f59bc49641f42dfc4963835cada..1d33f33aead7fa724e23bedc24c273d29f89f5ef 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 ;;