From: Bartosz Bilas Date: Tue, 20 Jul 2021 18:10:48 +0000 (+0200) Subject: package/cegui: disable Python SWIG extension modules unconditionally X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=804d3ef55e157e3e3e7de69295fb9ea1446b44da;p=buildroot.git package/cegui: disable Python SWIG extension modules unconditionally It seems that Python SWIG extension module(s) are not compatible with buildroot's SWIG version so disable them unconditionally to fix the following build errors: Fixes: - http://autobuild.buildroot.net/results/f80/f80ebdcbde08c13eddec9fadc39b9c2bd4b83e94// and more... Signed-off-by: Bartosz Bilas Signed-off-by: Thomas Petazzoni --- diff --git a/package/cegui/cegui.mk b/package/cegui/cegui.mk index 747ebbb953..127d3b0fad 100644 --- a/package/cegui/cegui.mk +++ b/package/cegui/cegui.mk @@ -16,7 +16,8 @@ CEGUI_CONF_OPTS = \ -DCEGUI_BUILD_XMLPARSER_XERCES=OFF \ -DCEGUI_USE_FRIBIDI=OFF \ -DCEGUI_SAMPLES_ENABLED=OFF \ - -DCEGUI_BUILD_APPLICATION_TEMPLATES=OFF + -DCEGUI_BUILD_APPLICATION_TEMPLATES=OFF \ + -DCEGUI_BUILD_PYTHON_MODULES_SWIG=OFF CEGUI_DEPENDENCIES = glm \ $(if $(BR2_PACKAGE_LIBGLFW),libglfw) \ $(if $(BR2_PACKAGE_HAS_LIBGL),libgl) \