Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: modules/
Date: Thu, 23 Aug 2012 05:56:37
Message-Id: 1345517134.cd75f40f975044bf4f346a29bc6c5870071da519.jmbsvicetto@gentoo
1 commit: cd75f40f975044bf4f346a29bc6c5870071da519
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 21 02:45:34 2012 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 21 02:45:34 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=cd75f40f
7
8 Stop dropping /etc/portage and instead drop only its contents.
9 This prevents breakage on later stages as stage1 is the only one that creates /etc/portage.
10
11 ---
12 modules/stage1_target.py | 2 +-
13 1 files changed, 1 insertions(+), 1 deletions(-)
14
15 diff --git a/modules/stage1_target.py b/modules/stage1_target.py
16 index 32e6334..ea29bb0 100644
17 --- a/modules/stage1_target.py
18 +++ b/modules/stage1_target.py
19 @@ -32,7 +32,7 @@ class stage1_target(generic_stage_target):
20 "/usr/lib/python2.3/email", "/usr/lib/python2.3/lib-tk",\
21 "/usr/lib/python2.4/test", "/usr/lib/python2.4/email",\
22 "/usr/lib/python2.4/lib-tk", "/usr/share/zoneinfo",\
23 - "/etc/portage"])
24 + "/etc/portage/*"])
25
26 # XXX: How do these override_foo() functions differ from the ones in generic_stage_target and why aren't they in stage3_target?