Skip to content
Snippets Groups Projects
Commit abb13670 authored by dje's avatar dje
Browse files

PR bootstrap/18033

        * config-ml.in: Eval option if surrounded by single quotes.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93244 138bc75d-0d04-0410-961f-82ee72b054a4
parent 853b103d
No related branches found
No related tags found
No related merge requests found
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 ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment