From 3a7fafd93ea35604a6cccd9c2847fb13e96b66aa Mon Sep 17 00:00:00 2001 From: Alp Toker Date: Thu, 26 Jun 2008 23:04:20 +0000 Subject: [PATCH] Another prospective fix for the build bot svn path=/trunk/mono/; revision=106705 --- acinclude.m4 | 4 ++-- 1 file 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 -- 2.25.1