From: Thomas Jarosch Date: Thu, 4 Feb 2010 15:57:06 +0000 (+0100) Subject: Change gccxml wrapper to work with older bash version. Hopefull this doesn't break... X-Git-Tag: v0.6~5 X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=commitdiff_plain;h=2d7579fdb8935ad3cb560d5c56b9e8464f1fe162 Change gccxml wrapper to work with older bash version. Hopefull this doesn't break something --- diff --git a/libt2n-gccxml.sh b/libt2n-gccxml.sh index 162d792..2f7309f 100755 --- a/libt2n-gccxml.sh +++ b/libt2n-gccxml.sh @@ -11,18 +11,18 @@ if ! ((EOO)); then ;; --) EOO=1 - OPTIONS+=("$1") + OPTIONS="$OPTIONS $1" shift ;; *) - OPTIONS+=("$1") + OPTIONS="$OPTIONS $1" shift ;; esac else - OPTIONS+=("$1") + OPTIONS="$OPTIONS $1" shift fi done -gccxml "${OPTIONS[@]}" +gccxml $OPTIONS