Commit 145e2972 by David Edelsohn Committed by David Edelsohn

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
parent e1e04267
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
......
......@@ -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 ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment