From f66e4c2568c5867b3f92f2c78609fafa0252194e Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Mon, 7 Jul 2025 15:59:40 +0200 Subject: [PATCH] toolchain/toolchain-wrapper.c: correct CCACHE_BASEDIR comment Commit 1e97b2787331 ("ccache: support changing the output directory") added the CCACHE_BASEDIR logic, but added a comment (presumably from cut'n'paste) about compilercheck instead, fix that. Signed-off-by: Peter Korsgaard Signed-off-by: Julien Olivain --- toolchain/toolchain-wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/toolchain-wrapper.c b/toolchain/toolchain-wrapper.c index 4dde0362b6..703d2fc042 100644 --- a/toolchain/toolchain-wrapper.c +++ b/toolchain/toolchain-wrapper.c @@ -526,7 +526,7 @@ int main(int argc, char **argv) } #endif #ifdef BR_CCACHE_BASEDIR - /* Allow compilercheck to be overridden through the environment */ + /* Allow basedir to be overridden through the environment */ if (setenv("CCACHE_BASEDIR", BR_CCACHE_BASEDIR, 0)) { perror(__FILE__ ": Failed to set CCACHE_BASEDIR"); return 3;