diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2006-06-08 16:10:12 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2006-06-08 16:10:12 +0000 |
commit | d1373080cb258676ef1e1d7c298ca1dc4a3dcc5b (patch) | |
tree | eb2a05e5df80dc21190542defd6d496331fc5867 /config-ml.in | |
parent | 951543148efe76399d51f65e8e1347c704c020a1 (diff) | |
download | newlib-d1373080cb258676ef1e1d7c298ca1dc4a3dcc5b.zip newlib-d1373080cb258676ef1e1d7c298ca1dc4a3dcc5b.tar.gz newlib-d1373080cb258676ef1e1d7c298ca1dc4a3dcc5b.tar.bz2 |
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.
Diffstat (limited to 'config-ml.in')
-rw-r--r-- | config-ml.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config-ml.in b/config-ml.in index 4082fe4..88c9e81 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 ;; |