diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-03 23:02:11 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 01:28:46 +0200 |
| commit | 44f38e53df5fa998507447267ad80e1b06280f4d (patch) | |
| tree | b843e1961890dba5488c2564ce47713beb1eddcb /package/net-tools | |
| parent | 8f85d36e53b1fbf2e952bc6619e54a3c501b9735 (diff) | |
| download | buildroot-44f38e53df5fa998507447267ad80e1b06280f4d.tar.gz buildroot-44f38e53df5fa998507447267ad80e1b06280f4d.zip | |
net-tools: use the new gettext logic
This commit switches to use the new gettext logic, which involves:
- using TARGET_NLS_DEPENDENCIES instead of hand-encoded dependencies
on gettext/host-gettext
- using TARGET_NLS_LIBS to force linking against libintl
- dropping BR2_PACKAGE_GETTEXT selection
- using BR2_SYSTEM_ENABLE_NLS instead of BR2_ENABLE_LOCALE to decide
if NLS support should be enabled or not
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/net-tools')
| -rw-r--r-- | package/net-tools/Config.in | 1 | ||||
| -rw-r--r-- | package/net-tools/net-tools.mk | 6 |
2 files changed, 3 insertions, 4 deletions
diff --git a/package/net-tools/Config.in b/package/net-tools/Config.in index 3980b7edb8..5e24bd1b70 100644 --- a/package/net-tools/Config.in +++ b/package/net-tools/Config.in @@ -1,7 +1,6 @@ config BR2_PACKAGE_NET_TOOLS bool "net-tools" depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help A collection of programs that form the base set of the NET-3 networking distribution for the Linux operating system. diff --git a/package/net-tools/net-tools.mk b/package/net-tools/net-tools.mk index 5720fccc90..57a3eb4dea 100644 --- a/package/net-tools/net-tools.mk +++ b/package/net-tools/net-tools.mk @@ -6,7 +6,7 @@ NET_TOOLS_VERSION = 3f170bff115303e92319791cbd56371e33dcbf6d NET_TOOLS_SITE = git://git.code.sf.net/p/net-tools/code -NET_TOOLS_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) +NET_TOOLS_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES) NET_TOOLS_LICENSE = GPL-2.0+ NET_TOOLS_LICENSE_FILES = COPYING @@ -20,7 +20,7 @@ define NET_TOOLS_CONFIGURE_CMDS endef # Enable I18N when appropiate -ifeq ($(BR2_ENABLE_LOCALE),y) +ifeq ($(BR2_SYSTEM_ENABLE_NLS),y) define NET_TOOLS_ENABLE_I18N $(SED) 's:I18N 0:I18N 1:' $(@D)/config.h endef @@ -35,7 +35,7 @@ NET_TOOLS_POST_CONFIGURE_HOOKS += NET_TOOLS_ENABLE_I18N NET_TOOLS_ENABLE_IPV6 define NET_TOOLS_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) \ - LIBS="$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),-lintl)" \ + LIBS=$(TARGET_NLS_LIBS) \ $(MAKE) -C $(@D) endef |

