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 02:04:35 +0400
committerAlp Toker <alp@mono-cvs.ximian.com>2008-06-27 02:04:35 +0400
commit3bf065dd58180aa90d6b9e5cc2a425ce8206de81 (patch)
tree29b88c1146650d80f61bb7cd89309546eb33ea03 /acinclude.m4
parent601e03ed5be7e31b73ec243f9561ab986b3bc0c3 (diff)
2008-06-26 Alp Toker <alp@nuanti.com>
* acinclude.m4: Prospective dolt fix for the build bot. Fix syntax to work with older bash versions. svn path=/trunk/mono/; revision=106696
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..56d89634efd 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+=("$arg") ;;
esac
done
if $modeok && $tagok ; then