From: Chukun Pan Date: Tue, 21 Jan 2025 15:10:28 +0000 (+0800) Subject: tools: ccache: disable build testing X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17700%2Fhead;p=thirdparty%2Fopenwrt.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 447bc3ea432..6a666a5680d 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))