From 47659b4f342382c764076c0c0dfbee446b090661 Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Mon, 31 Oct 2022 11:49:59 -0600 Subject: [PATCH] package/iwd: add dbus compile time dependency In 5b3b2d80f4cf586d360ff696c3dacbd4cb48fdc4 we dropped dbus as a build dependency, however we still need it when building with systemd so that the service directory is available via pkg-config. In addition we can drop --with-dbus-datadir by unconditionally requiring dbus as the datadir will then be fetched from pkg-config. Fixes: checking D-Bus bus services directory... configure: error: D-Bus bus services directory is required http://autobuild.buildroot.net/results/4a48676460e6ce588897598f0022ec840b4b4b8d/ Signed-off-by: James Hilliard Signed-off-by: Thomas Petazzoni --- package/iwd/iwd.mk | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package/iwd/iwd.mk b/package/iwd/iwd.mk index 002988cf33..5ffbde334e 100644 --- a/package/iwd/iwd.mk +++ b/package/iwd/iwd.mk @@ -16,9 +16,8 @@ IWD_SELINUX_MODULES = networkmanager IWD_CONF_OPTS = \ --disable-manual-pages \ --enable-external-ell \ - --enable-dbus-policy \ - --with-dbus-datadir=/usr/share -IWD_DEPENDENCIES = ell + --enable-dbus-policy +IWD_DEPENDENCIES = dbus ell ifeq ($(BR2_PACKAGE_READLINE),y) # iwd client depends on readline (GPL-3.0+)