mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
Closes: https://bugs.gentoo.org/926331 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
15 lines
389 B
Diff
15 lines
389 B
Diff
--- rt-8u202-b02/modules/fxpackager/src/main/native/library/common/PosixPlatform.cpp
|
|
+++ rt-8u202-b02-patched/modules/fxpackager/src/main/native/library/common/PosixPlatform.cpp
|
|
@@ -232,10 +232,7 @@
|
|
pid_t wpid = 0;
|
|
|
|
//TODO Use waitpid instead of wait
|
|
-#ifdef LINUX
|
|
- wait(&status);
|
|
-#endif
|
|
-#ifdef MAC
|
|
+#if defined(LINUX) || defined(MAC)
|
|
wpid = wait(&status);
|
|
#endif
|
|
|