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 571F6138247 for ; Sun, 15 Dec 2013 04:01:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6CFFE0B5A; Sun, 15 Dec 2013 04:01:04 +0000 (UTC) Received: from qmta08.westchester.pa.mail.comcast.net (qmta08.westchester.pa.mail.comcast.net [76.96.62.80]) by pigeon.gentoo.org (Postfix) with ESMTP id 23513E0B50 for ; Sun, 15 Dec 2013 04:00:58 +0000 (UTC) Received: from omta10.westchester.pa.mail.comcast.net ([76.96.62.28]) by qmta08.westchester.pa.mail.comcast.net with comcast id 1fyt1n0020cZkys58g0ygs; Sun, 15 Dec 2013 04:00:58 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta10.westchester.pa.mail.comcast.net with comcast id 1g0x1n00f152l3L3Wg0yFV; Sun, 15 Dec 2013 04:00:58 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 5223CD69992; Sat, 14 Dec 2013 20:00:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387080057; bh=+feaQMF2lBOkBVyqq1bXB65vvSdQSzQD7IOrSC+UL9E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=PH2vdjgsCetK0M+OpN4FIzyyfTEZ9Rhx5HDFYhGhLWWJ5e3Q0NyX/xQkMPJWibwyx IMBZC8HKmHKRxs71K6CtMbTGZwQjP3a9Hl4d9wRrfpkCrv+XCUU3MoX/m96Nq2QKcO 1GjdbJd47uFY5yWUEfF+ukAvpT6SI/dQPRcTDFjE= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v3 17/19] modules/generic_stage_target.py: Use 'kerncache' instead of '/tmp/kerncache' as the mountmap key Date: Sat, 14 Dec 2013 20:00:43 -0800 Message-Id: <184a14444589c213520156fc796b4fbe6eb728dd.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=1387080058; bh=+luLIteIvZTA6nnDtgZWPmPjC/Vy2ljerR2LA2wL1Io=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=TknzvORmMT6P9mssxan1w9pYywI02/zuv7YINKLT0n/e+gO2kssMNKOcvm+ktaTB6 GZegBeAp2FgV+x1ru40k6YR8gV6m0h4N/etqeMlkzBcN0bxkFYk0i02aiQKb3iLOlJ zUOvX9AfZo4yGco9MxtaTZDCqPulfSslvq6zX4YPoWwEqNNhg5YESTdm65gmDNxweA i43S7HLYcEJJNbaLAfUD62s+CHjgQ32d9XChYZ545L5U5YShQtvjnG7uYQ44/D1I7r ETHjqmnkbRaw9rCwcXID3tGE/5tw7FHLncJq8Tuey/aXhboc6FlMDSAHg4D3eqwg+o a+YT2I1Xl8TDg== 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: cbd5326c-4890-4045-a02d-71eda6c8cf32 X-Archives-Hash: 027d0deb21d338ac1984aab744313c66 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index dc02ad2..6a9b980 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -202,8 +202,8 @@ class generic_stage_target(generic_target): self.set_kerncache_path() print "Location of the kerncache is "+\ self.settings["kerncache_path"] - self.mounts.append("/tmp/kerncache") - self.mountmap["/tmp/kerncache"]=self.settings["kerncache_path"] + self.mounts.append("kerncache") + self.mountmap["kerncache"] = self.settings["kerncache_path"] if "CCACHE" in self.settings: if "CCACHE_DIR" in os.environ: -- 1.8.3.2