From: Michael Nosthoff Date: Wed, 16 Sep 2020 10:02:09 +0000 (+0200) Subject: package/doxygen: disable shared libs for host X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=38e660af4b72edfbeb404d0a60a7b70321073861;p=buildroot.git package/doxygen: disable shared libs for host doxygen fails to build with BUILD_SHARED_LIBS=ON as it only for some targets honors this flag and links the rest static. So enforce BUILD_SHARED_LIBS=OFF for this package. Signed-off-by: Michael Nosthoff Signed-off-by: Thomas Petazzoni --- diff --git a/package/doxygen/doxygen.mk b/package/doxygen/doxygen.mk index 6d8727208a..ee8ae4fde4 100644 --- a/package/doxygen/doxygen.mk +++ b/package/doxygen/doxygen.mk @@ -11,4 +11,6 @@ DOXYGEN_LICENSE = GPL-2.0 DOXYGEN_LICENSE_FILES = LICENSE HOST_DOXYGEN_DEPENDENCIES = host-flex host-bison +HOST_DOXYGEN_CONF_OPTS += -DBUILD_SHARED_LIBS=OFF + $(eval $(host-cmake-package))