]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
cups-filters: fix avahi dependency
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Thu, 10 May 2018 09:35:00 +0000 (11:35 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 13 May 2018 19:54:57 +0000 (21:54 +0200)
avahi support requires avahi-client, which needs avahi-daemon and dbus

Fixes:
 - http://autobuild.buildroot.net/results/5c326bb56199000eb0e53a4d0f3c6c13be71cda0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/cups-filters/cups-filters.mk

index 82ea46dd94cb265973465a7669a1fc59bbcaf4b1..131e58246e34393cf15994797492cbe15b75586d 100644 (file)
@@ -40,7 +40,8 @@ else
 CUPS_FILTERS_CONF_OPTS += --disable-dbus
 endif
 
-ifeq ($(BR2_PACKAGE_AVAHI),y)
+# avahi support requires avahi-client, which needs avahi-daemon and dbus
+ifeq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_DBUS),yy)
 CUPS_FILTERS_DEPENDENCIES += avahi
 CUPS_FILTERS_CONF_OPTS += --enable-avahi
 else