disable-sandbox-for-emul32-builds patch applied

This commit is contained in:
Safa Arıman
2019-08-05 21:53:37 +03:00
parent 8add680d13
commit 10f828be40
+2 -1
View File
@@ -706,7 +706,8 @@ class Builder:
if func in self.actionLocals: if func in self.actionLocals:
if ctx.get_option('ignore_sandbox') or \ if ctx.get_option('ignore_sandbox') or \
not ctx.config.values.build.enablesandbox: not ctx.config.values.build.enablesandbox or \
"emul32" in self.build_type:
self.actionLocals[func]() self.actionLocals[func]()
else: else:
import catbox import catbox