Skip to content

Commit

Permalink
* config-ml.in: Pass ${ml_config_env} to configure calls.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123825 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
sje committed Apr 14, 2007
1 parent 480e5bc commit 0e80ece
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
7 changes: 6 additions & 1 deletion 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 Expand Up @@ -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
Expand Down

0 comments on commit 0e80ece

Please sign in to comment.