diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-03 22:43:53 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 01:27:25 +0200 |
commit | d86f89f33cdeb535140013c8616ce8c495850d82 (patch) | |
tree | 28d5fd861f0813b91fa27802be0363f99ee5f4b4 | |
parent | e0a46903ee7de81f6807725c2c523d238cab3f0d (diff) | |
download | buildroot-d86f89f33cdeb535140013c8616ce8c495850d82.tar.gz buildroot-d86f89f33cdeb535140013c8616ce8c495850d82.zip |
dropwatch: use new gettext logic
This commit switches to use the new gettext logic, which involves:
- using TARGET_NLS_DEPENDENCIES instead of relying on binutils
depending on gettext/host-gettext
- using TARGET_NLS_LIBS to force linking against libintl
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/dropwatch/dropwatch.mk | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/package/dropwatch/dropwatch.mk b/package/dropwatch/dropwatch.mk index e08a0c1357..692a6e8c40 100644 --- a/package/dropwatch/dropwatch.mk +++ b/package/dropwatch/dropwatch.mk @@ -6,18 +6,16 @@ DROPWATCH_VERSION = 7c33d8a8ed105b07a46b55d71d93b36ed34c16db DROPWATCH_SITE = git://git.infradead.org/users/nhorman/dropwatch.git -DROPWATCH_DEPENDENCIES = binutils libnl readline host-pkgconf +DROPWATCH_DEPENDENCIES = binutils libnl readline host-pkgconf \ + $(TARGET_NLS_DEPENDENCIES) DROPWATCH_LICENSE = GPL-2.0 DROPWATCH_LICENSE_FILES = COPYING # libbfd may be linked to libintl # Ugly... but LDLIBS are hardcoded anyway DROPWATCH_LDLIBS = \ - -lbfd -lreadline -lnl-3 -lnl-genl-3 -lpthread -lncurses -lm - -ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y) -DROPWATCH_LDLIBS += -lintl -endif + -lbfd -lreadline -lnl-3 -lnl-genl-3 -lpthread -lncurses -lm \ + $(TARGET_NLS_LIBS) define DROPWATCH_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \ |