Prechádzať zdrojové kódy

Another prospective fix for the build bot

svn path=/trunk/mono/; revision=106705
Alp Toker 17 rokov pred
rodič
commit
3a7fafd93e
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      acinclude.m4

+ 2 - 2
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