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 B796B138247 for ; Sat, 14 Dec 2013 22:25:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 978C8E0B3D; Sat, 14 Dec 2013 22:24:49 +0000 (UTC) Received: from qmta12.westchester.pa.mail.comcast.net (qmta12.westchester.pa.mail.comcast.net [76.96.59.227]) by pigeon.gentoo.org (Postfix) with ESMTP id C12D3E0B18 for ; Sat, 14 Dec 2013 22:24:47 +0000 (UTC) Received: from omta13.westchester.pa.mail.comcast.net ([76.96.62.52]) by qmta12.westchester.pa.mail.comcast.net with comcast id 1ZuA1n00717dt5G5CaQnw5; Sat, 14 Dec 2013 22:24:47 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta13.westchester.pa.mail.comcast.net with comcast id 1aQm1n00T152l3L3ZaQnAK; Sat, 14 Dec 2013 22:24:47 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 1D677D68B6C; Sat, 14 Dec 2013 14:24:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387059886; bh=CW+XXp12OPj+/4vwgonsgseefPWQvFxVZWhYViDQSwM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=k2YszloKrq6VDqe4Vm0T0J9VJWiiPy4NmXktFmGAzbPAscsVjPxFMqQN12frqw/sP sG1vn/feLO+SmnMECer/qtBGbmx2ZAcSePogUbWuk3fzFI8aZlgOYUOBe77pECaTdO 2jxL1v7YU2cgn3crrqds/hvSoPRq75rSSUAgPjzA= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v2 17/21] modules/generic_stage_target.py: Use 'packagedir' instead of '/usr/portage/packages' as the mountmap key Date: Sat, 14 Dec 2013 14:24:25 -0800 Message-Id: X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: In-Reply-To: References: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387059887; bh=BKONnicAgWn1zpOld86FTtEuUDuBOr9jzSW5aZiIB5I=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=fZcYTSD5ZtT5+6lx+JeB2dfsYAOPObH8utbsXuUOoi5Jo3woQHV0IBNCYSIruuma+ ZloFLmo3wpFESqf+FgY1aimW1mQ1MY4tbkT0aFH0OOBVSv2NUPuxc01Lo+3l3r32Gl B9VClP2xYz+CTrThYQQKI84E7HsMeIFXo2GxhENjiuxNs5X5g02ul7kK0BJ48fjxyz lBqT6CHnQhv7NTOv3Q89B+z0w5mjJy0RVR2PfTHc+TjdTNaIpVXtKGa60tb0UIcd4j O1rpfZ3Y3KKnYuXB11kh0wLDZjCH9ckFfnHDJ0+Klljb5K/tYGX0sSQpuUMHsuoIDP xcRfxS799wuZg== 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: 9dee0559-58ff-4d18-a353-e7fb45fc7cd3 X-Archives-Hash: a676f653e2d538ff4e1dcf7f1db4e5bf From: Brian Dolbec W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Signed-off-by: W. Trevor King --- modules/generic_stage_target.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index f8dd352..dc02ad2 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -195,9 +195,8 @@ class generic_stage_target(generic_target): self.set_pkgcache_path() print "Location of the package cache is "+\ self.settings["pkgcache_path"] - self.mounts.append("/usr/portage/packages") - self.mountmap["/usr/portage/packages"]=\ - self.settings["pkgcache_path"] + self.mounts.append("packagedir") + self.mountmap["packagedir"] = self.settings["pkgcache_path"] if "KERNCACHE" in self.settings: self.set_kerncache_path() -- 1.8.3.2