Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9548 - main/branches/2.1.2/pym
Date: Fri, 28 Mar 2008 11:46:34
Message-Id: E1JfD2V-0006d9-12@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-03-28 11:46:29 +0000 (Fri, 28 Mar 2008)
3 New Revision: 9548
4
5 Modified:
6 main/branches/2.1.2/pym/portage.py
7 Log:
8 Remove redundant CUSTOM_PROFILE_PATH from the PROFILE_PATHS variable so
9 that /etc/portage/profile/profile.bashrc will only be sourced once if
10 it exists. (trunk r9435)
11
12
13 Modified: main/branches/2.1.2/pym/portage.py
14 ===================================================================
15 --- main/branches/2.1.2/pym/portage.py 2008-03-28 11:44:39 UTC (rev 9547)
16 +++ main/branches/2.1.2/pym/portage.py 2008-03-28 11:46:29 UTC (rev 9548)
17 @@ -3932,7 +3932,7 @@
18 mysettings["ECLASSDIR"] = mysettings["PORTDIR"]+"/eclass"
19 mysettings["SANDBOX_LOG"] = mycpv.replace("/", "_-_")
20
21 - mysettings["PROFILE_PATHS"] = "\n".join(mysettings.profiles)+"\n"+CUSTOM_PROFILE_PATH
22 + mysettings["PROFILE_PATHS"] = "\n".join(mysettings.profiles)
23 mysettings["P"] = mysplit[0]+"-"+mysplit[1]
24 mysettings["PN"] = mysplit[0]
25 mysettings["PV"] = mysplit[1]
26
27 --
28 gentoo-commits@l.g.o mailing list