From 667ae917a4a4a3d3cae1743ccdd0b2cba1ffa758 Mon Sep 17 00:00:00 2001 From: Fedor Sakharov Date: Tue, 5 Oct 2021 13:34:25 +0300 Subject: [PATCH] Adds cachepot to the known wrappers set --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e8e177cc0..ac7652293 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2370,7 +2370,7 @@ impl Build { // // It's true that everything here is a bit of a pain, but apparently if // you're not literally make or bash then you get a lot of bug reports. - let known_wrappers = ["ccache", "distcc", "sccache", "icecc"]; + let known_wrappers = ["ccache", "distcc", "sccache", "icecc", "cachepot"]; let mut parts = tool.split_whitespace(); let maybe_wrapper = match parts.next() {