From: Danomi Manchego Date: Wed, 2 Mar 2016 02:56:07 +0000 (-0500) Subject: avahi: move libdns_sd compat hook definition inside conditional block X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2dfabd10d1e484d84c0e6b5a58ab43d131ca3230;p=buildroot.git avahi: move libdns_sd compat hook definition inside conditional block As directed in the buildroot manual, "Optional hooks: keep hook definition and assignment together in one if block". And also to be consistent with the rest of avahi.mk. Signed-off-by: Danomi Manchego Signed-off-by: Thomas Petazzoni --- diff --git a/package/avahi/avahi.mk b/package/avahi/avahi.mk index cad7acd302..8cf5f23210 100644 --- a/package/avahi/avahi.mk +++ b/package/avahi/avahi.mk @@ -216,13 +216,13 @@ define AVAHI_INSTALL_INIT_SYSV $(AVAHI_INSTALL_DAEMON_INIT_SYSV) endef +ifeq ($(BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY),y) # applications expects to be able to #include define AVAHI_STAGING_INSTALL_LIBDNSSD_LINK ln -sf avahi-compat-libdns_sd/dns_sd.h \ $(STAGING_DIR)/usr/include/dns_sd.h endef -ifeq ($(BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY),y) AVAHI_POST_INSTALL_STAGING_HOOKS += AVAHI_STAGING_INSTALL_LIBDNSSD_LINK endif