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
This commit is contained in:
David Edelsohn 2005-01-13 00:47:56 +00:00 committed by David Edelsohn
parent e1e04267b4
commit 145e2972ee
2 changed files with 10 additions and 0 deletions

View File

@ -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

View File

@ -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 ;;