Skip to content

Commit

Permalink
PR bootstrap/18033
Browse files Browse the repository at this point in the history
        * 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
  • Loading branch information
dje committed Jan 13, 2005
1 parent 853b103 commit abb1367
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 5 additions & 0 deletions config-ml.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;;
Expand Down

0 comments on commit abb1367

Please sign in to comment.