Gentoo Archives: gentoo-portage-dev

From: Mike Gilbert <floppym@g.o>
To: gentoo-portage-dev@l.g.o
Subject: [gentoo-portage-dev] [PATCH] ebuild: look for ccache symlinks in /usr/lib/ccache/bin
Date: Sat, 24 Sep 2016 02:55:40
Message-Id: 20160924025530.22782-1-floppym@gentoo.org
1 ccache-config has been installing the symlinks there since Nov 2014.
2
3 Bug: https://bugs.gentoo.org/509956
4 Bug: https://bugs.gentoo.org/594982
5 ---
6 pym/portage/package/ebuild/prepare_build_dirs.py | 2 +-
7 1 file changed, 1 insertion(+), 1 deletion(-)
8
9 diff --git a/pym/portage/package/ebuild/prepare_build_dirs.py b/pym/portage/package/ebuild/prepare_build_dirs.py
10 index 7fdac74..808e77d 100644
11 --- a/pym/portage/package/ebuild/prepare_build_dirs.py
12 +++ b/pym/portage/package/ebuild/prepare_build_dirs.py
13 @@ -154,7 +154,7 @@ def _prepare_features_dirs(mysettings):
14
15 features_dirs = {
16 "ccache":{
17 - "path_dir": "%s/usr/%s/ccache/bin" % (EPREFIX, libdir),
18 + "path_dir": "%s/usr/lib/ccache/bin" % EPREFIX,
19 "basedir_var":"CCACHE_DIR",
20 "default_dir":os.path.join(mysettings["PORTAGE_TMPDIR"], "ccache"),
21 "always_recurse":False},
22 --
23 2.10.0

Replies