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 05C6E1387B1 for ; Sun, 15 Dec 2013 04:10:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3BCBE0B2A; Sun, 15 Dec 2013 04:10:46 +0000 (UTC) Received: from qmta03.westchester.pa.mail.comcast.net (qmta03.westchester.pa.mail.comcast.net [76.96.62.32]) by pigeon.gentoo.org (Postfix) with ESMTP id 46EE7E0B2A for ; Sun, 15 Dec 2013 04:10:46 +0000 (UTC) Received: from omta07.westchester.pa.mail.comcast.net ([76.96.62.59]) by qmta03.westchester.pa.mail.comcast.net with comcast id 1fzX1n0021GhbT853gAlkM; Sun, 15 Dec 2013 04:10:45 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta07.westchester.pa.mail.comcast.net with comcast id 1gAk1n00Q152l3L3TgAluN; Sun, 15 Dec 2013 04:10:45 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 1B8FAD6998D; Sat, 14 Dec 2013 20:00:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387080057; bh=VGPFl36bd6LBRQFLbyCPgp+yxf/uREv/R2+SfTj6r0k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=goD7iLUiOExRExibiVTAsbzHK5OU7bR+Jfi/bzjgXWvLBNeQeS9huS5uahjoCiGo0 fuhBnZ6YPcY0HQAyOXFQEidy451dnOImatsMXpSeBB6SQd3zCeIxQlfmTYJDhOMAd4 2BTXlWIBTImQII5x9tGSKLf9pmtxvVLw0xpyM3Bk= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v3 16/19] modules/generic_stage_target.py: Use 'packagedir' instead of '/usr/portage/packages' as the mountmap key Date: Sat, 14 Dec 2013 20:00:42 -0800 Message-Id: <633695685a48305d67d9c40438e7020b543e5ca9.1387079535.git.wking@tremily.us> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: <20131215032258.GK25409@odin.tremily.us> In-Reply-To: References: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387080645; bh=yqYomwqL2DHrfniUJ+iPikEsfakiHGzVrspn42BVdws=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=QnS/9aaDpMmfpHxu8ClbgFDoRqWffDqYPQMO3Je9kULVhHbunJgKc/A/aEugmdQS8 COCvBptJ44NHp/9Bd/aB/9LbPQswWFX8YhLCuHk5XSKb7OjU1o9TL+AKJVek1UoWQw dnDs9mJmdKOpvfVmEv39P3rg16v04RMEgYyo+hBcwlzPBjgn9B5MZ3baSMaf/kPOWb q8Ks9REu7r30HF6vYRzwMA0UQxRW+a6tXQ1NK53OXKZJlE7SFIORt80ZirRaeIYChu YI0HFGR8XyilAAjleafZpO3pqlmTGNGP4wNHONz7JBjdt2s8YCfDAZ9+ozeWvKLo+f +B/MmvJ1q4LEQ== 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: 55838681-71b6-4361-8180-604ae059c68c X-Archives-Hash: f8c05e3dc117f82ebe6fad267335ef21 From: Brian Dolbec W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Signed-off-by: W. Trevor King Signed-off-by: Brian Dolbec --- 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