From 771fa83920c593fd89593fda1a8a276d2ed8b3a2 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Wed, 19 Jul 2023 00:18:31 +0200 Subject: [PATCH] package/kodi: disable clang support When present kodi tries to use the target binary of clang-format https://github.com/xbmc/xbmc/blob/master/cmake/modules/buildtools/FindClangFormat.cmake causing a build error. To fix the problem disable clang-format support. Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- package/kodi/kodi.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/kodi/kodi.mk b/package/kodi/kodi.mk index 7cbc1df40a..aff272d014 100644 --- a/package/kodi/kodi.mk +++ b/package/kodi/kodi.mk @@ -78,6 +78,7 @@ KODI_CONF_OPTS += \ -DENABLE_INTERNAL_SPDLOG=OFF \ -DKODI_DEPENDSBUILD=OFF \ -DENABLE_GOLD=OFF \ + -DCLANG_FORMAT_EXECUTABLE=OFF \ -DHOST_CAN_EXECUTE_TARGET=FALSE \ -DNATIVEPREFIX=$(HOST_DIR) \ -DDEPENDS_PATH=$(STAGING_DIR)/usr \