From: Fabrice Fontaine Date: Sat, 30 Mar 2019 14:49:44 +0000 (+0100) Subject: package/rpm: add optional dbus dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6e0b771d13ca984df2449d4edde8994589911d69;p=buildroot.git package/rpm: add optional dbus dependency It should be noted that dbus is enabled by default Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- diff --git a/package/rpm/rpm.mk b/package/rpm/rpm.mk index 0eb6e7f3c7..fe9f898bd3 100644 --- a/package/rpm/rpm.mk +++ b/package/rpm/rpm.mk @@ -35,6 +35,13 @@ else RPM_CONF_OPTS += --without-acl endif +ifeq ($(BR2_PACKAGE_DBUS),y) +RPM_DEPENDENCIES += dbus +RPM_CONF_OPTS += --enable-plugins +else +RPM_CONF_OPTS += --disable-plugins +endif + ifeq ($(BR2_PACKAGE_LIBCAP),y) RPM_DEPENDENCIES += libcap RPM_CONF_OPTS += --with-cap