From 8c2999648e43cdfe8eebcce71cb6653cd2d1345c Mon Sep 17 00:00:00 2001 From: Reilly Brogan Date: Wed, 6 May 2026 12:06:08 -0500 Subject: [PATCH] Avoid double-caching on Solus and AerynOS Following up from https://github.com/mozilla/sccache/pull/2524 add the ccache path that Solus uses (`/usr/lib64/ccache/bin`) and the one that AerynOS uses (`/usr/lib/ccache/bin`). Signed-off-by: Reilly Brogan --- src/util.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util.rs b/src/util.rs index baea99e47..ca384c51c 100644 --- a/src/util.rs +++ b/src/util.rs @@ -1304,7 +1304,9 @@ mod tests { // Create a PATH with ccache directories let path_with_ccache = env::join_paths([ "/usr/lib64/ccache", + "/usr/lib64/ccache/bin", "/usr/lib/ccache", + "/usr/lib/ccache/bin", "/usr/bin", "/usr/local/bin", "/home/user/bin",