]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR bootstrap/18033
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 Jan 2005 00:47:56 +0000 (00:47 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 Jan 2005 00:47:56 +0000 (00:47 +0000)
        * config-ml.in: Eval option if surrounded by single quotes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93244 138bc75d-0d04-0410-961f-82ee72b054a4

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 ;;