diff options
author | David Edelsohn <edelsohn@gnu.org> | 2005-01-13 00:47:56 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2005-01-12 19:47:56 -0500 |
commit | 145e2972ee5fae2dfff8c84cc3e910184835eb4e (patch) | |
tree | 66a1bb731252c43859ddf547028c33ec116e36b2 /config-ml.in | |
parent | e1e04267b417875628a8240e5409ab14d5da8195 (diff) | |
download | gcc-145e2972ee5fae2dfff8c84cc3e910184835eb4e.tar.gz |
re PR bootstrap/18033 (--disable-aix64 doesn't remove ppc64 from multilib list)
PR bootstrap/18033
* config-ml.in: Eval option if surrounded by single quotes.
From-SVN: r93244
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 ;; |