blob: 9e5f62181d323b7c9d643c76967c7a8880695405 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- shell/source/unix/exec/shellexec.cxx.orig 2022-12-22 00:14:09 UTC
+++ shell/source/unix/exec/shellexec.cxx
@@ -229,7 +229,7 @@ void SAL_CALL ShellExec::execute( const OUString& aCom
}
OString cmd =
-#ifdef LINUX
+#if defined(LINUX) || defined(__FreeBSD__)
// avoid blocking (call it in background)
"( " + aBuffer + " ) &";
#else
|