From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 43EDB138334 for ; Sat, 21 Jul 2018 18:54:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE28CE081A; Sat, 21 Jul 2018 18:54:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84382E081A for ; Sat, 21 Jul 2018 18:54:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D42A1335D2B for ; Sat, 21 Jul 2018 18:54:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C05B379 for ; Sat, 21 Jul 2018 18:54:18 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1532104575.c142d2f5c70d254d197343c2d86043a0e8616a46.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: c142d2f5c70d254d197343c2d86043a0e8616a46 X-VCS-Branch: master Date: Sat, 21 Jul 2018 18:54:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d61bd884-5df8-4ab3-ad60-052ed9db5ba9 X-Archives-Hash: 4b60a0ba8b100975964a01c3c633d372 commit: c142d2f5c70d254d197343c2d86043a0e8616a46 Author: Brian Dolbec dolsen gentoo org> AuthorDate: Fri Jul 20 16:29:26 2018 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Jul 20 16:36:15 2018 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=c142d2f5 stagebase.py: Relocate ccache location away from /root/ Signed-off-by: Brian Dolbec dolsen gentoo.org> catalyst/base/stagebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index e98a289f..d30ed5ce 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -253,7 +253,7 @@ class StageBase(TargetBase, ClearBase, GenBase): ccdir = os.environ["CCACHE_DIR"] del os.environ["CCACHE_DIR"] else: - ccdir = "/root/.ccache" + ccdir = "/var/tmp/ccache" if not os.path.isdir(ccdir): raise CatalystError( "Compiler cache support can't be enabled (can't find " + ccdir+")")