blob: aad12fca2875c17a0ba7e531fd4c141c8a9ba41c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- shell/source/unix/exec/shellexec.cxx.orig 2022-01-26 14:35:29 UTC
+++ shell/source/unix/exec/shellexec.cxx
@@ -212,7 +212,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.makeStringAndClear() + " ) &";
#else
|