From: Jorge Manuel B. S. Vicetto (jmbsvicetto) Date: Tue, 21 Aug 2012 02:45:34 +0000 (+0000) Subject: Stop dropping /etc/portage and instead drop only its contents. X-Git-Tag: Catalyst-2.0.11~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cd75f40f975044bf4f346a29bc6c5870071da519;p=catalyst.git Stop dropping /etc/portage and instead drop only its contents. This prevents breakage on later stages as stage1 is the only one that creates /etc/portage. --- diff --git a/modules/stage1_target.py b/modules/stage1_target.py index 32e63344..ea29bb0a 100644 --- a/modules/stage1_target.py +++ b/modules/stage1_target.py @@ -32,7 +32,7 @@ class stage1_target(generic_stage_target): "/usr/lib/python2.3/email", "/usr/lib/python2.3/lib-tk",\ "/usr/lib/python2.4/test", "/usr/lib/python2.4/email",\ "/usr/lib/python2.4/lib-tk", "/usr/share/zoneinfo",\ - "/etc/portage"]) + "/etc/portage/*"]) # XXX: How do these override_foo() functions differ from the ones in generic_stage_target and why aren't they in stage3_target?