From: Jeff Johnston Date: Thu, 8 Jun 2006 16:10:12 +0000 (+0000) Subject: 2006-06-08 Jeff Johnston X-Git-Tag: newlib-csl-sourcerygxx-3_4_4-25~345 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4d8b6901f6d32faedf603a4b55236a488649447;p=thirdparty%2Fbinutils-gdb.git 2006-06-08 Jeff Johnston Sync from gcc: 2005-01-12 David Edelsohn Andreas Schwab PR bootstrap/18033 * config-ml.in: Eval option if surrounded by single quotes. --- diff --git a/ChangeLog b/ChangeLog index c0079a4ac1f..e2fb1f60924 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2006-06-08 Jeff Johnston + + Sync from gcc: + + 2005-01-12 David Edelsohn + Andreas Schwab + + PR bootstrap/18033 + * config-ml.in: Eval option if surrounded by single quotes. + 2006-06-07 Carlos O'Donell Sync from gcc: diff --git a/config-ml.in b/config-ml.in index 4082fe45d3d..88c9e81f15a 100644 --- a/config-ml.in +++ b/config-ml.in @@ -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 ;;