From: Chukun Pan Date: Tue, 21 Jan 2025 15:10:28 +0000 (+0800) Subject: tools: ccache: disable build testing X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=08ebb9e91401416e8c8fa0519ab431d7df4c2b2c;p=openwrt%2Fstaging%2Fstintel.git tools: ccache: disable build testing The ccache build relies on doctest, which is useless and can be disabled. Signed-off-by: Chukun Pan Link: https://github.com/openwrt/openwrt/pull/17700 Signed-off-by: Christian Marangi --- diff --git a/tools/ccache/Makefile b/tools/ccache/Makefile index 447bc3ea43..6a666a5680 100644 --- a/tools/ccache/Makefile +++ b/tools/ccache/Makefile @@ -22,6 +22,7 @@ CMAKE_HOST_OPTIONS += \ -DCMAKE_SKIP_RPATH=FALSE \ -DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOST}/lib" \ -DENABLE_DOCUMENTATION=OFF \ - -DREDIS_STORAGE_BACKEND=OFF + -DREDIS_STORAGE_BACKEND=OFF \ + -DENABLE_TESTING=OFF $(eval $(call HostBuild))