Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r15310 - main/trunk/pym/portage
Date: Mon, 01 Feb 2010 21:13:20
Message-Id: E1Nc3a9-0006v3-UE@stork.gentoo.org
1 Author: zmedico
2 Date: 2010-02-01 21:13:17 +0000 (Mon, 01 Feb 2010)
3 New Revision: 15310
4
5 Modified:
6 main/trunk/pym/portage/__init__.py
7 Log:
8 Simplify the conditional that triggers calculation of A and AA variables.
9
10
11 Modified: main/trunk/pym/portage/__init__.py
12 ===================================================================
13 --- main/trunk/pym/portage/__init__.py 2010-01-31 22:53:00 UTC (rev 15309)
14 +++ main/trunk/pym/portage/__init__.py 2010-02-01 21:13:17 UTC (rev 15310)
15 @@ -7195,7 +7195,7 @@
16 mydo not in ("digest", "manifest") and "noauto" not in features)
17 alist = mysettings.configdict["pkg"].get("A")
18 aalist = mysettings.configdict["pkg"].get("AA")
19 - if need_distfiles or alist is None or aalist is None:
20 + if alist is None or aalist is None:
21 # Make sure we get the correct tree in case there are overlays.
22 mytree = os.path.realpath(
23 os.path.dirname(os.path.dirname(mysettings["O"])))