From 2d7579fdb8935ad3cb560d5c56b9e8464f1fe162 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Thu, 4 Feb 2010 16:57:06 +0100 Subject: [PATCH] Change gccxml wrapper to work with older bash version. Hopefull this doesn't break something --- libt2n-gccxml.sh | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) 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 -- 1.7.1