diff options
author | Rene Engelhard <rene@debian.org> | 2012-10-19 12:08:17 +0200 |
---|---|---|
committer | Rene Engelhard <rene@debian.org> | 2012-10-19 12:09:12 +0200 |
commit | 293f16bb2d2a6fe3a7c1452474c4c6966547f033 (patch) | |
tree | bcc2f6cf686f28a1f4af1817c0efe0bd3bb43dda /desktop | |
parent | ac60fba3b5a506f6659f268a8b4fa8e1da600603 (diff) |
move 2>&1 where it belongs in soffice.sh, thanks mst
Change-Id: I5cc08e3fd88beba70cac61ff4570c02dbad9faa0
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 0c3ab6dbe23a..9afcfdf4fcf0 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 2>&1 > valgrind.log + exec > valgrind.log 2>&1 fi # oosplash does the rest: forcing pages in, javaldx etc. are |