From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2501313800E for ; Fri, 27 Jul 2012 09:02:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA959E0655 for ; Fri, 27 Jul 2012 09:02:44 +0000 (UTC) Received: from mail-pb0-f53.google.com (mail-pb0-f53.google.com [209.85.160.53]) by pigeon.gentoo.org (Postfix) with ESMTP id 0DE92E0552 for ; Fri, 27 Jul 2012 08:56:48 +0000 (UTC) Received: by pbbrr13 with SMTP id rr13so5298027pbb.40 for ; Fri, 27 Jul 2012 01:56:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=lQXWMILWuIvJW662X+7XEwliRjYL+KQbblg/dfR23cI=; b=DieiUaaOzoK0ox4yiCF0HtFH7MxV2qwMtRF6EdAoAs7aweCdfRoJMUIDRQlz7TygzM mfryYcguSG/Rkq1VXNXJnYbFx7dQDFWUjk9rAg20rDSwnuyNvYMDS12nrTXp0Td257Wd zxiMmg94wl0F0ls295YSCZXUos/9SbdIpHWbGvOTrcqrJd0mAqTG29ks7MZWzR7K8MMh cUjtvypRVxL6XDYBtTYBmXUc0n3viMqstwc3EDSv/U3KmCeww9pb/CdQ+L/N1FazZBM1 TYFksiW+nf4//e3EIGVkkrDd1IruQdoOElGFa7Hu6nQ1ZhjoYHMM8Ch6RP27w0eKyO5/ n2Qg== Received: by 10.68.194.4 with SMTP id hs4mr11956314pbc.128.1343379408401; Fri, 27 Jul 2012 01:56:48 -0700 (PDT) Received: from ozzie (27.sub-166-250-64.myvzw.com. [166.250.64.27]) by mx.google.com with ESMTPS id ru4sm1515455pbc.66.2012.07.27.01.56.46 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 27 Jul 2012 01:56:47 -0700 (PDT) Received: by ozzie (sSMTP sendmail emulation); Fri, 27 Jul 2012 04:57:46 -0400 From: Rick Farina To: gentoo-catalyst@lists.gentoo.org Cc: Rick Farina Subject: [gentoo-catalyst] [PATCH] make.conf and make.profile moved to /etc/portage so stop cleaning it to avoid multiple fatal errors Date: Fri, 27 Jul 2012 04:57:39 -0400 Message-Id: <1343379459-23779-1-git-send-email-sidhayn@gmail.com> X-Mailer: git-send-email 1.7.8.6 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 73728c6b-0662-498b-97ab-e0fc2d57ea8a X-Archives-Hash: ff179507e452c0903d643ea398de5a5d Signed-off-by: Rick Farina --- modules/stage1_target.py | 3 +-- modules/stage2_target.py | 1 - 2 files changed, 1 insertions(+), 3 deletions(-) diff --git a/modules/stage1_target.py b/modules/stage1_target.py index 32e6334..560efdb 100644 --- a/modules/stage1_target.py +++ b/modules/stage1_target.py @@ -31,8 +31,7 @@ class stage1_target(generic_stage_target): "/usr/lib/python2.2/lib-tk", "/usr/lib/python2.3/test",\ "/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"]) + "/usr/lib/python2.4/lib-tk", "/usr/share/zoneinfo"]) # XXX: How do these override_foo() functions differ from the ones in generic_stage_target and why aren't they in stage3_target? diff --git a/modules/stage2_target.py b/modules/stage2_target.py index f529721..97ea7fe 100644 --- a/modules/stage2_target.py +++ b/modules/stage2_target.py @@ -35,7 +35,6 @@ class stage2_target(generic_stage_target): def set_cleanables(self): generic_stage_target.set_cleanables(self) - self.settings["cleanables"].extend(["/etc/portage"]) def override_chost(self): if self.settings.has_key("chost"): -- 1.7.8.6