From 51115d730f218b0cd3dea2ddb7eaf8337f36f0d0 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 12 Jul 2022 12:55:29 +0100 Subject: [PATCH] OpenDingux: Set ccache directory explicitly The latest OpenDingux buildroot default to the `/__w/` ccache directory due to a bug. Set the ccache directory explicitly to work around that. --- Packaging/OpenDingux/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packaging/OpenDingux/build.sh b/Packaging/OpenDingux/build.sh index 3e9491b66..f92eafd07 100755 --- a/Packaging/OpenDingux/build.sh +++ b/Packaging/OpenDingux/build.sh @@ -94,7 +94,7 @@ cmake_configure() { } cmake_build() { - cmake --build "$BUILD_DIR" -j "$(getconf _NPROCESSORS_ONLN)" + BR_CACHE_DIR="${HOME}/.buildroot-ccache" cmake --build "$BUILD_DIR" -j "$(getconf _NPROCESSORS_ONLN)" } strip_bin() {