From 3e1de2ef067575ee33b55cfe02ffed09f7e3fe6b Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Fri, 18 Mar 2022 20:33:10 +0100 Subject: [PATCH] package/wireplumber: fix introspection build introspection needs host-doxygen and host-python-lxml since the addition of the package in commit c9a3c10417aadce9ee4922e30235776409ce8eb3 and https://gitlab.freedesktop.org/pipewire/wireplumber/-/commit/2e5b13f970fe3dd28a4ce75868d46403034c6822 ../output-1/build/wireplumber-0.4.8/docs/meson.build:14:0: ERROR: python3 is missing modules: lxml Doxygen is required to build just the bare minimal (not the full documentation) since https://gitlab.freedesktop.org/pipewire/wireplumber/-/commit/93c2e7d686ba678991185e711533ce29826b5374 Fixes: - http://autobuild.buildroot.org/results/24c524d86a3e2e67305f698644be9b15d4562488 Signed-off-by: Fabrice Fontaine Signed-off-by: Yann E. MORIN --- package/wireplumber/wireplumber.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/wireplumber/wireplumber.mk b/package/wireplumber/wireplumber.mk index 3bf7cece45..327138391d 100644 --- a/package/wireplumber/wireplumber.mk +++ b/package/wireplumber/wireplumber.mk @@ -17,7 +17,7 @@ WIREPLUMBER_CONF_OPTS = \ -Dsystem-lua-version= ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y) -WIREPLUMBER_DEPENDENCIES += gobject-introspection +WIREPLUMBER_DEPENDENCIES += host-doxygen host-python-lxml gobject-introspection WIREPLUMBER_CONF_OPTS += -Dintrospection=enabled else WIREPLUMBER_CONF_OPTS += -Dintrospection=disabled