diff options
author | Stuart Bennett <sb476@cam.ac.uk> | 2008-12-12 00:08:44 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-12-16 12:03:03 -0800 |
commit | c7fffe9e1354f816b6e2adedff045999fba9f1be (patch) | |
tree | 8284a9410dcafd3bc96792110197c07d84d3b737 /acinclude.m4 | |
parent | ca56d764d2be28c64fe15c9e37d534ef00117ad2 (diff) |
dolt: allow older versions of bash to compile the xserver (#19031)
Signed-off-by: James Cloos <cloos@jhcloos.com>
(cherry picked from commit 7be6520d94df874c6bbd46d06a1830a12d0967f2)
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index efece2aab..c3e36f8b1 100644 --- a/acinclude.m4 +++ b/acinclude.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 |