diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-13 00:47:56 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-13 00:47:56 +0000 |
commit | abb13670fb87224e6edab7e5949c004a6a21eb59 (patch) | |
tree | 66a1bb731252c43859ddf547028c33ec116e36b2 /config-ml.in | |
parent | 853b103d50c2c42a2e650ebeeab041919e12e617 (diff) | |
download | gcc-abb13670fb87224e6edab7e5949c004a6a21eb59.tar.gz |
PR bootstrap/18033
* 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
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 253e8dd04d9..d644bd2106b 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 ;; |