diff options
author | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-10-01 10:28:44 +0000 |
---|---|---|
committer | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-10-01 10:28:44 +0000 |
commit | 74c0b2b0f26cf2f11ff0da1f7f45700f5ea1c542 (patch) | |
tree | 1833ba73fbb3bfc2e42413d69978c29a6d6e1589 /package | |
parent | 497f55fb21e6c495f6247ba4753d224de8916dca (diff) | |
download | buildroot-novena-74c0b2b0f26cf2f11ff0da1f7f45700f5ea1c542.tar.gz buildroot-novena-74c0b2b0f26cf2f11ff0da1f7f45700f5ea1c542.zip |
avahi: add dependencies in right order
This patch puts gettext and libintl before the avahi targets, thus making sure
they exist before avahi targets are built.
Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/avahi/avahi.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/avahi/avahi.mk b/package/avahi/avahi.mk index 48e4bf77c..32d266a57 100644 --- a/package/avahi/avahi.mk +++ b/package/avahi/avahi.mk @@ -180,7 +180,7 @@ endif $(TARGET_DIR)/usr/sbin/avahi-daemon $(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $@ -avahi: uclibc libdaemon $(AVAHI_TARGETS) $(if $(BR2_ENABLE_LOCALE),gettext libintl) +avahi: uclibc libdaemon $(if $(BR2_ENABLE_LOCALE),gettext libintl) $(AVAHI_TARGETS) avahi-clean: -$(MAKE) -C $(AVAHI_DIR) distclean |