mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 07:23:30 +08:00
elfutils: 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 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
2171d07315
commit
8c1bfe6d42
@ -14,7 +14,6 @@ config BR2_PACKAGE_ELFUTILS
|
||||
depends on !BR2_bfin
|
||||
select BR2_PACKAGE_ZLIB
|
||||
select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
|
||||
help
|
||||
Libraries/utilities to handle ELF objects (drop in
|
||||
replacement for libelf).
|
||||
|
@ -10,7 +10,7 @@ ELFUTILS_SITE = https://sourceware.org/elfutils/ftp/$(ELFUTILS_VERSION)
|
||||
ELFUTILS_INSTALL_STAGING = YES
|
||||
ELFUTILS_LICENSE = GPL-2.0+ or LGPL-3.0+ (library)
|
||||
ELFUTILS_LICENSE_FILES = COPYING-GPLV2 COPYING-LGPLV3
|
||||
ELFUTILS_DEPENDENCIES = zlib
|
||||
ELFUTILS_DEPENDENCIES = zlib $(TARGET_NLS_DEPENDENCIES)
|
||||
HOST_ELFUTILS_DEPENDENCIES = host-zlib host-bzip2 host-xz
|
||||
|
||||
# We patch configure.ac
|
||||
@ -40,13 +40,8 @@ ELFUTILS_CONF_ENV += \
|
||||
CFLAGS="$(ELFUTILS_CFLAGS)" \
|
||||
CPPFLAGS="$(ELFUTILS_CPPFLAGS)"
|
||||
|
||||
ELFUTILS_LDFLAGS = $(TARGET_LDFLAGS)
|
||||
|
||||
# Unconditionnally requires gettext.
|
||||
ifeq ($(BR2_NEEDS_GETTEXT),y)
|
||||
ELFUTILS_DEPENDENCIES += gettext
|
||||
ELFUTILS_LDFLAGS += -lintl
|
||||
endif
|
||||
ELFUTILS_LDFLAGS = $(TARGET_LDFLAGS) \
|
||||
$(TARGET_NLS_LIBS)
|
||||
|
||||
ELFUTILS_CONF_ENV += \
|
||||
LDFLAGS="$(ELFUTILS_LDFLAGS)"
|
||||
|
Loading…
Reference in New Issue
Block a user