Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11566 - main/branches/prefix/pym/portage/dbapi
Date: Sat, 27 Sep 2008 15:37:31
Message-Id: E1KjbrM-00052Q-HQ@stork.gentoo.org
1 Author: grobian
2 Date: 2008-09-27 15:37:27 +0000 (Sat, 27 Sep 2008)
3 New Revision: 11566
4
5 Modified:
6 main/branches/prefix/pym/portage/dbapi/vartree.py
7 Log:
8 Missed an essential increment
9
10 Modified: main/branches/prefix/pym/portage/dbapi/vartree.py
11 ===================================================================
12 --- main/branches/prefix/pym/portage/dbapi/vartree.py 2008-09-27 14:52:10 UTC (rev 11565)
13 +++ main/branches/prefix/pym/portage/dbapi/vartree.py 2008-09-27 15:37:27 UTC (rev 11566)
14 @@ -2888,7 +2888,7 @@
15 # read global reverse NEEDED map
16 linkmap = self.vartree.dbapi.linkmap
17 if ostype == "Darwin":
18 - linkmap.rebuild(include_file=os.path.join(inforoot, "NEEDED.MACHO.2"))
19 + linkmap.rebuild(include_file=os.path.join(inforoot, "NEEDED.MACHO.3"))
20 else:
21 linkmap.rebuild(include_file=os.path.join(inforoot, "NEEDED.ELF.2"))
22 liblist = linkmap.listLibraryObjects()