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 | |
parent | e1e04267b417875628a8240e5409ab14d5da8195 (diff) | |
download | gcc-145e2972ee5fae2dfff8c84cc3e910184835eb4e.zip gcc-145e2972ee5fae2dfff8c84cc3e910184835eb4e.tar.gz gcc-145e2972ee5fae2dfff8c84cc3e910184835eb4e.tar.bz2 |
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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | config-ml.in | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2005-01-12 David Edelsohn <edelsohn@gnu.org> + + PR bootstrap/18033 + * config-ml.in: Eval option if surrounded by single quotes. + 2005-01-03 Paolo Bonzini <bonzini@gnu.org> Revert 2004-12-28 Makefile changes, a better fix will be diff --git a/config-ml.in b/config-ml.in index 253e8dd..d644bd2 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 ;; |