diff options
author | Rene Engelhard <rene@debian.org> | 2012-10-18 10:53:03 +0200 |
---|---|---|
committer | Rene Engelhard <rene@debian.org> | 2012-10-18 11:16:20 +0200 |
commit | 1c192dc0fcfb5a3f63042ed7daf7deaf48d56668 (patch) | |
tree | 990dbefd9e33845d20762cd2b226e132e4871db4 /desktop | |
parent | b97313abb70e494eff9e49c932f6be78f1d34de8 (diff) |
deb#690717 fix bashism in /bin/sh script
Change-Id: I43b0065e56b234a5aa748ac1593c29a44fdb1647
Diffstat (limited to 'desktop')
-rwxr-xr-x | desktop/scripts/soffice.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/scripts/soffice.sh b/desktop/scripts/soffice.sh index 7727206c2a2b..0c3ab6dbe23a 100755 --- a/desktop/scripts/soffice.sh +++ b/desktop/scripts/soffice.sh @@ -155,7 +155,7 @@ fi # valgrind --log-file=valgrind.log does not work well with --trace-children=yes if [ -n "$VALGRINDCHECK" -a -z "$VALGRIND" ] ; then echo "redirecting the standard and the error output to valgrind.log" - exec &>valgrind.log + exec 2>&1 > valgrind.log fi # oosplash does the rest: forcing pages in, javaldx etc. are |