From a00eb0b3157ba27dd20498ea9bb12e9da6610e9b Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Thu, 13 Jan 2005 00:50:40 +0000 Subject: [PATCH] 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: r93246 --- ChangeLog | 5 +++++ config-ml.in | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3a0d3bf29814..8cede70102f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-01-12 David Edelsohn + + PR bootstrap/18033 + * config-ml.in: Eval option if surrounded by single quotes. + 2005-01-06 Laurent GUERBY * MAINTAINERS: Update my email address. diff --git a/config-ml.in b/config-ml.in index b2e4ea9cf977..1d33f33aead7 100644 --- a/config-ml.in +++ b/config-ml.in @@ -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 ;; -- 2.47.2