Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r15176 - main/branches/prefix/pym/portage
Date: Fri, 08 Jan 2010 11:32:54
Message-Id: E1NTD5C-0006aW-F2@stork.gentoo.org
1 Author: grobian
2 Date: 2010-01-08 11:32:45 +0000 (Fri, 08 Jan 2010)
3 New Revision: 15176
4
5 Modified:
6 main/branches/prefix/pym/portage/__init__.py
7 Log:
8 whitelist UNIXMODE for MiNT-like OSes
9
10 Modified: main/branches/prefix/pym/portage/__init__.py
11 ===================================================================
12 --- main/branches/prefix/pym/portage/__init__.py 2010-01-08 07:48:41 UTC (rev 15175)
13 +++ main/branches/prefix/pym/portage/__init__.py 2010-01-08 11:32:45 UTC (rev 15176)
14 @@ -1470,11 +1470,12 @@
15 ]
16
17 # other variables inherited from the calling environment
18 + # UNIXMODE is necessary for MiNT
19 _environ_whitelist += [
20 "CVS_RSH", "ECHANGELOG_USER",
21 "GPG_AGENT_INFO",
22 "SSH_AGENT_PID", "SSH_AUTH_SOCK",
23 - "STY", "WINDOW", "XAUTHORITY",
24 + "STY", "WINDOW", "XAUTHORITY", "UNIXMODE",
25 ]
26
27 _environ_whitelist = frozenset(_environ_whitelist)