mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
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:
parent
e1e04267b4
commit
145e2972ee
@ -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
|
||||
|
@ -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 ;;
|
||||
|
Loading…
Reference in New Issue
Block a user