Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlp Toker <alp@mono-cvs.ximian.com>2008-06-27 03:04:20 +0400
committerAlp Toker <alp@mono-cvs.ximian.com>2008-06-27 03:04:20 +0400
commit3a7fafd93ea35604a6cccd9c2847fb13e96b66aa (patch)
tree3259563a0ef6ed38de54e3c42cd582b4d5e90903 /acinclude.m4
parent2eea400f2fe73fb7218d990c959f826d1309f8b6 (diff)
Another prospective fix for the build bot
svn path=/trunk/mono/; revision=106705
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 56d89634efd..d621bfcd81c 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -150,14 +150,14 @@ __DOLTLIBTOOL__EOF__
cat <<'__DOLTLIBTOOL__EOF__' >>doltlibtool
top_builddir_slash="${0%%doltlibtool}"
: ${top_builddir_slash:=./}
-args=()
+args=
modeok=false
tagok=false
for arg in "$[]@"; do
case "$arg" in
--mode=compile) modeok=true ;;
--tag=CC|--tag=CXX) tagok=true ;;
- *) args+=("$arg") ;;
+ *) args="$args $arg" ;;
esac
done
if $modeok && $tagok ; then