From: Yann E. MORIN Date: Sat, 26 Dec 2020 15:47:29 +0000 (+0100) Subject: package/opencv3: do not detect ccache X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=505e7f47715c77d8586444a4fefe4a190b77aaad;p=buildroot.git package/opencv3: do not detect ccache OpenCV-3's buildsystem will try to detect ccache and use it if available. This may yield a system-installed ccache. However, in Buildroot, ccache is entirely hidden away and handled in the toolchain wrapper. Forcibly disable detection of ccache. Signed-off-by: Yann E. MORIN Cc: Fabrice Fontaine Cc: Samuel Martin Signed-off-by: Peter Korsgaard --- diff --git a/package/opencv3/opencv3.mk b/package/opencv3/opencv3.mk index 2bf70261c7..231d44395e 100644 --- a/package/opencv3/opencv3.mk +++ b/package/opencv3/opencv3.mk @@ -46,6 +46,7 @@ endif # OpenCV build options OPENCV3_CONF_OPTS += \ -DBUILD_WITH_STATIC_CRT=OFF \ + -DENABLE_CCACHE=OFF \ -DENABLE_COVERAGE=OFF \ -DENABLE_FAST_MATH=ON \ -DENABLE_IMPL_COLLECTION=OFF \