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-30 10:18:30 +0400
committerAlp Toker <alp@mono-cvs.ximian.com>2008-06-30 10:18:30 +0400
commite49ff7fdece3025ffdbc92d958276626bcdfeaf4 (patch)
treececbf7661c676289a071d0133aff530f4af972f2 /acinclude.m4
parent2423105380f9e7940570ccf3edf2a0dabe70fc0e (diff)
2008-06-30 Alp Toker <alp@nuanti.com>
* configure.in: * acinclude.m4: Remove concatenation syntax from doltlibtool to support old versions of bash and re-enable dolt. svn path=/trunk/mono/; revision=106873
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 8c75480ae08..8f94582fb89 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -157,7 +157,7 @@ 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