diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-02-04 11:14:56 +0000 |
---|---|---|
committer | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-02-04 11:37:13 +0000 |
commit | f52eb759f61e1806014972cb736e07479f157aa6 (patch) | |
tree | c6aa31da4b7a3f525d51ca3f6c81aa1efab29dc5 /desktop/scripts | |
parent | 424f9953a269f804ab1f9dc146292ab5b7a82200 (diff) |
fix desktop scripts
reverts parts of e6a9dc22a4e58b565894f8cdb6a19755af7b14de
we want globbing here
Change-Id: Ibe4672f41b0fe6a75d1aca898cc55414e138f6ef
Reviewed-on: https://gerrit.libreoffice.org/33913
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Tested-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'desktop/scripts')
-rwxr-xr-x | desktop/scripts/soffice.sh | 2 | ||||
-rwxr-xr-x | desktop/scripts/unopkg.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop/scripts/soffice.sh b/desktop/scripts/soffice.sh index 1f7d7a231770..c6d630aca509 100755 --- a/desktop/scripts/soffice.sh +++ b/desktop/scripts/soffice.sh @@ -81,7 +81,7 @@ test -n "$VALGRIND" && EXTRAOPT="--valgrind" # force the --record option if the RR variable is set test -n "$RR" && EXTRAOPT="--record" -for arg in "$@" $EXTRAOPT ; do +for arg in $@ $EXTRAOPT ; do case "$arg" in --record) if which rr >/dev/null 2>&1 ; then diff --git a/desktop/scripts/unopkg.sh b/desktop/scripts/unopkg.sh index c66da9b41ebe..c90a7db3aeed 100755 --- a/desktop/scripts/unopkg.sh +++ b/desktop/scripts/unopkg.sh @@ -58,7 +58,7 @@ AIX) ;; esac -for arg in "$@" +for arg in $@ do case "$arg" in #collect all bootstrap variables specified on the command line |