[aclocal.dolt.m4] Fix build with bash versions <= 3.0 (bug #18363)

This commit is contained in:
Behdad Esfahbod 2008-11-04 01:51:06 -05:00
parent 9021755012
commit 310026ab42

View file

@ -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