summaryrefslogtreecommitdiff
path: root/config-ml.in
diff options
context:
space:
mode:
authorPhil Edwards <pme@gcc.gnu.org>2003-07-29 19:17:46 +0000
committerPhil Edwards <pme@gcc.gnu.org>2003-07-29 19:17:46 +0000
commit52c0c542ae190ab901e87c8216ea8199f6a17d24 (patch)
tree428590e276ea011b0fc2f092308cfd142dd2b320 /config-ml.in
parentb279040742e77ece9f64ed2d2b372c0842aff7ae (diff)
config-ml.in: Use ac_configure_args directly instead of ml_arguments.
2003-07-29 Phil Edwards <pme@gcc.gnu.org> * config-ml.in: Use ac_configure_args directly instead of ml_arguments. Only set ml_norecursion if --no[-]recursion is actually seen. From-SVN: r69934
Diffstat (limited to 'config-ml.in')
-rw-r--r--config-ml.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/config-ml.in b/config-ml.in
index 1e474d3e4bc..d5b5e74b2ac 100644
--- a/config-ml.in
+++ b/config-ml.in
@@ -75,13 +75,12 @@
Makefile=${ac_file-Makefile}
ml_config_shell=${CONFIG_SHELL-/bin/sh}
-ml_arguments="${ac_configure_args}"
ml_realsrcdir=${srcdir}
# Scan all the arguments and set all the ones we need.
ml_verbose=--verbose
-for option in ${ml_arguments}
+for option in ${ac_configure_args}
do
case $option in
--*) ;;
@@ -107,7 +106,7 @@ do
enableopt=`echo ${option} | sed 's:^--::;s:=.*$::;s:-:_:g'`
eval $enableopt="$optarg"
;;
- --norecursion | --no*)
+ --norecursion | --no-recursion)
ml_norecursion=yes
;;
--silent | --sil* | --quiet | --q*)
@@ -834,7 +833,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} \
- ${ml_arguments} ${ml_srcdiroption} ; then
+ ${ac_configure_args} ${ml_srcdiroption} ; then
true
else
exit 1