From: Zac Medico Date: Fri, 7 Sep 2007 03:11:02 +0000 (-0000) Subject: For bug #190268, filter SANDBOX_* from the calling environment so that they X-Git-Tag: v2.1.3.9~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3fb006dccb20a74d301d45812f6410ce57a9991f;p=portage.git For bug #190268, filter SANDBOX_* from the calling environment so that they can't interfere with ebuild.sh. (trunk r7746) svn path=/main/branches/2.1.2/; revision=7747 --- diff --git a/pym/portage.py b/pym/portage.py index 28e54af7b..a4fb9a9e5 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1313,7 +1313,8 @@ class config: # 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