From: Brian Dolbec Date: Thu, 20 Dec 2012 02:56:04 +0000 (-0800) Subject: modules/generic_stage_target.py: Use 'ccache' instead of '/var/tmp/ccache' as the... X-Git-Url: http://git.tremily.us/?p=catalyst.git;a=commitdiff_plain;h=88319d2c10cc1394470e357bfc9f51a625669f7f modules/generic_stage_target.py: Use 'ccache' instead of '/var/tmp/ccache' as the mountmap key W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Reviewed-by: Matt Turner Signed-off-by: W. Trevor King Signed-off-by: Brian Dolbec --- diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index 6a9b980e..8c983e14 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -215,8 +215,8 @@ class generic_stage_target(generic_target): raise CatalystError,\ "Compiler cache support can't be enabled (can't find "+\ ccdir+")" - self.mounts.append("/var/tmp/ccache") - self.mountmap["/var/tmp/ccache"]=ccdir + self.mounts.append("ccache") + self.mountmap["ccache"] = ccdir """ for the chroot: """ self.env["CCACHE_DIR"]="/var/tmp/ccache"