Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13493 - main/branches/2.1.6/pym/portage/cache
Date: Thu, 30 Apr 2009 07:08:09
Message-Id: E1LzQNF-0007Ws-Il@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-30 07:08:01 +0000 (Thu, 30 Apr 2009)
3 New Revision: 13493
4
5 Modified:
6 main/branches/2.1.6/pym/portage/cache/metadata.py
7 Log:
8 Bug #265768 - When initializing the eclass cache, use the correct location.
9 (trunk r13328)
10
11 Modified: main/branches/2.1.6/pym/portage/cache/metadata.py
12 ===================================================================
13 --- main/branches/2.1.6/pym/portage/cache/metadata.py 2009-04-30 07:07:31 UTC (rev 13492)
14 +++ main/branches/2.1.6/pym/portage/cache/metadata.py 2009-04-30 07:08:01 UTC (rev 13493)
15 @@ -54,7 +54,7 @@
16 if "_eclasses_" not in d:
17 if "INHERITED" in d:
18 if self.ec is None:
19 - self.ec = portage.eclass_cache.cache(self.location)
20 + self.ec = portage.eclass_cache.cache(self.location[:-15])
21 try:
22 d["_eclasses_"] = self.ec.get_eclass_data(
23 d["INHERITED"].split())