2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Thu, 8 Jun 2006 16:10:12 +0000 (16:10 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Thu, 8 Jun 2006 16:10:12 +0000 (16:10 +0000)
        Sync from gcc:

        2005-01-12  David Edelsohn  <edelsohn@gnu.org>
                    Andreas Schwab  <schwab@suse.de>

        PR bootstrap/18033
        * config-ml.in: Eval option if surrounded by single quotes.

ChangeLog
config-ml.in

index c0079a4ac1f50e9b184b4fab326e6e876c97ad82..e2fb1f609242103c7cf904b7f0cee64592aa73a7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2006-06-08  Jeff Johnston  <jjohnstn@redhat.com>
+
+       Sync from gcc:
+
+       2005-01-12  David Edelsohn  <edelsohn@gnu.org>
+                   Andreas Schwab  <schwab@suse.de>
+
+       PR bootstrap/18033
+       * config-ml.in: Eval option if surrounded by single quotes.
+
 2006-06-07  Carlos O'Donell  <carlos@codesourcery.com>
 
        Sync from gcc:
index 4082fe45d3d70c1aa353c2071c633da574addfda..88c9e81f15a54fe9b2ea519d07ce75c45dde64a6 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 ;;
This page took 0.034268 seconds and 4 git commands to generate.