[cairo-commit] build/aclocal.dolt.m4

Behdad Esfahbod behdad at kemper.freedesktop.org
Mon Nov 3 22:51:40 PST 2008


 build/aclocal.dolt.m4 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 310026ab42c2078e2749c886c74c5b38cab41671
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Tue Nov 4 01:51:06 2008 -0500

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

diff --git a/build/aclocal.dolt.m4 b/build/aclocal.dolt.m4
index 8c75480..8f94582 100644
--- a/build/aclocal.dolt.m4
+++ b/build/aclocal.dolt.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@<:@${#args[@]}@:>@="$arg" ;;
     esac
 done
 if $modeok && $tagok ; then


More information about the cairo-commit mailing list