summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index e11b8f419..62648ee87 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -1201,7 +1201,8 @@ class config(object):
# Blacklist vars that could interfere with portage internals.
for blacklisted in "CATEGORY", "PKGUSE", "PORTAGE_CONFIGROOT", \
- "ROOT":
+ "ROOT", "SANDBOX_DENY", "SANDBOX_PREDICT", "SANDBOX_READ", \
+ "SANDBOX_WRITE":
for cfg in self.lookuplist:
cfg.pop(blacklisted, None)
del blacklisted, cfg