2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
Sync from gcc: 2005-01-12 David Edelsohn <edelsohn@gnu.org> Andreas Schwab <schwab@suse.de> PR bootstrap/18033 * config-ml.in: Eval option if surrounded by single quotes.
This commit is contained in:
parent
951543148e
commit
d1373080cb
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
Sync from gcc:
|
||||||
|
|
||||||
|
2005-01-12 David Edelsohn <edelsohn@gnu.org>
|
||||||
|
Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
PR bootstrap/18033
|
||||||
|
* config-ml.in: Eval option if surrounded by single quotes.
|
||||||
|
|
||||||
2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
|
2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
|
||||||
|
|
||||||
Sync from gcc:
|
Sync from gcc:
|
||||||
|
@ -108,6 +108,11 @@ ml_realsrcdir=${srcdir}
|
|||||||
ml_verbose=--verbose
|
ml_verbose=--verbose
|
||||||
for option in ${ac_configure_args}
|
for option in ${ac_configure_args}
|
||||||
do
|
do
|
||||||
|
# strip single quotes surrounding individual options
|
||||||
|
case $option in
|
||||||
|
\'*\') eval option=$option ;;
|
||||||
|
esac
|
||||||
|
|
||||||
case $option in
|
case $option in
|
||||||
--*) ;;
|
--*) ;;
|
||||||
-*) option=-$option ;;
|
-*) option=-$option ;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user