* config-ml.in: Pass ${ml_config_env} to configure calls.

From-SVN: r123825
This commit is contained in:
Steve Ellcey 2007-04-14 19:48:36 +00:00 committed by Steve Ellcey
parent b1483e87c9
commit 70070387d5
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-04-14 Steve Ellcey <sje@cup.hp.com>
* config-ml.in: Pass ${ml_config_env} to configure calls.
2007-04-04 Christian Bruel <christian.bruel@st.com>
* MAINTAINERS (Write After Approval): Add myself.

View File

@ -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 ;;
@ -890,7 +895,7 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
if eval ${ml_config_env} ${ml_config_shell} ${ml_recprog} \
--with-multisubdir=${ml_dir} --with-multisrctop=${multisrctop} \
${ac_configure_args} ${ml_srcdiroption} ; then
${ac_configure_args} ${ml_config_env} ${ml_srcdiroption} ; then
true
else
exit 1