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 0D108138330 for ; Sat, 24 Sep 2016 02:55:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EB41E0B2C; Sat, 24 Sep 2016 02:55:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BCEBE094C for ; Sat, 24 Sep 2016 02:55:35 +0000 (UTC) Received: from naomi.gilbertsystems.net (d192-24-229-26.try.wideopenwest.com [24.192.26.229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: floppym) by smtp.gentoo.org (Postfix) with ESMTPSA id 7F118340948 for ; Sat, 24 Sep 2016 02:55:34 +0000 (UTC) From: Mike Gilbert To: gentoo-portage-dev@lists.gentoo.org Subject: [gentoo-portage-dev] [PATCH] ebuild: look for ccache symlinks in /usr/lib/ccache/bin Date: Fri, 23 Sep 2016 22:55:30 -0400 Message-Id: <20160924025530.22782-1-floppym@gentoo.org> X-Mailer: git-send-email 2.10.0 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-portage-dev@lists.gentoo.org Reply-to: gentoo-portage-dev@lists.gentoo.org X-Archives-Salt: e018b002-f01a-4407-be5d-d8705d56b503 X-Archives-Hash: 334b1834581c5cb70e2c1bf2cccf5175 ccache-config has been installing the symlinks there since Nov 2014. Bug: https://bugs.gentoo.org/509956 Bug: https://bugs.gentoo.org/594982 --- pym/portage/package/ebuild/prepare_build_dirs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/package/ebuild/prepare_build_dirs.py b/pym/portage/package/ebuild/prepare_build_dirs.py index 7fdac74..808e77d 100644 --- a/pym/portage/package/ebuild/prepare_build_dirs.py +++ b/pym/portage/package/ebuild/prepare_build_dirs.py @@ -154,7 +154,7 @@ def _prepare_features_dirs(mysettings): features_dirs = { "ccache":{ - "path_dir": "%s/usr/%s/ccache/bin" % (EPREFIX, libdir), + "path_dir": "%s/usr/lib/ccache/bin" % EPREFIX, "basedir_var":"CCACHE_DIR", "default_dir":os.path.join(mysettings["PORTAGE_TMPDIR"], "ccache"), "always_recurse":False}, -- 2.10.0