Skip to content

Commit

Permalink
[aclocal.dolt.m4] Fix build with bash versions <= 3.0 (bug #18363)
Browse files Browse the repository at this point in the history
  • Loading branch information
Behdad Esfahbod committed Nov 4, 2008
1 parent 6434cdd commit 1d8ad69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/aclocal.dolt.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1d8ad69

Please sign in to comment.