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 3A407138247 for ; Sat, 14 Dec 2013 22:26:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42B1EE0AB9; Sat, 14 Dec 2013 22:24:53 +0000 (UTC) Received: from QMTA11.westchester.pa.mail.comcast.net (qmta11.westchester.pa.mail.comcast.net [76.96.59.211]) by pigeon.gentoo.org (Postfix) with ESMTP id B5BA9E0AB9 for ; Sat, 14 Dec 2013 22:24:47 +0000 (UTC) Received: from omta07.westchester.pa.mail.comcast.net ([76.96.62.59]) by QMTA11.westchester.pa.mail.comcast.net with comcast id 1a2Q1n0011GhbT85BaQncx; Sat, 14 Dec 2013 22:24:47 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta07.westchester.pa.mail.comcast.net with comcast id 1aQm1n00N152l3L3TaQnxV; Sat, 14 Dec 2013 22:24:47 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 4C220D68B71; 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=C6WGrn549q5YHWbeCNQPu4P+y5kYmS/xMKV+rkDIhPs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=DWarHqsgA8maZnubrc+u//8AOZ2kiw8YzXYWuWdRvoUV+ivt9JPE8bjbsd1TGGvJS O4gIa2dkyPx5JfXo5ywwa6IFnTi1vpCcynKkhpQdCbx5fHFNY5LoroeGVznuK7IbAX N258VOY7Jn/SRjBNX0Iz8e4TlLFBZKazV4LUpBHs= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v2 18/21] modules/generic_stage_target.py: Use 'kerncache' instead of '/tmp/kerncache' as the mountmap key Date: Sat, 14 Dec 2013 14:24:26 -0800 Message-Id: <81ed5e45d30236edffccfa93299dddc415baf012.1387059467.git.wking@tremily.us> 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=lfmbT93gOKK4iemcFCfy7EUUrYoPGL3+3FYTxS7EVZ4=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=FYB5U5iVKncMEFaQ2lZLQiAwILczE2Mt/cRfLH4TehBux8mK09MlO/KDbOC4CUoJF f2b2/GIAej3v3yTIZim4tgzT63qgVKTn1Un6ijiSklol3OpAtLPlvjwqrV8LYe5fkb euZ5csscME/ZERpQsJnMz02geEykhTm/nd4Lb3IvL2SXhGbZy5/kRCCm/H5vgR6AN4 K//Fc1ZTIcpJZ82JgVIxAzIb7M07PEZqH1PkL4w2nVJD1nLOWd13MwttVAlqDGs9a1 cuJf8uDKR7FVAl/ULLIphH0Z94vl6Fd4jZn3989/fGG2Ft/U9go/0yurv2uQQMyNSP gO5Ud5wargQmg== 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: 2b9c9a4e-f80d-4398-b8ed-e097d85530b5 X-Archives-Hash: 6e79598ddd4fa3262e7c4d8a9c3c5c27 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 | 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