From: Thomas Petazzoni Date: Tue, 4 Jul 2017 10:28:51 +0000 (+0200) Subject: libconfuse: use the new gettext logic X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff98354e7e3e5709383848383cc3247928053148;p=buildroot.git libconfuse: 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. Signed-off-by: Thomas Petazzoni --- diff --git a/package/libconfuse/libconfuse.mk b/package/libconfuse/libconfuse.mk index 5f1d5cdff9..07a73c8937 100644 --- a/package/libconfuse/libconfuse.mk +++ b/package/libconfuse/libconfuse.mk @@ -11,10 +11,7 @@ LIBCONFUSE_INSTALL_STAGING = YES LIBCONFUSE_CONF_OPTS = --disable-rpath LIBCONFUSE_LICENSE = ISC LIBCONFUSE_LICENSE_FILES = LICENSE - -ifeq ($(BR2_PACKAGE_GETTEXT),y) -LIBCONFUSE_DEPENDENCIES += gettext -endif +LIBCONFUSE_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES) $(eval $(autotools-package)) $(eval $(host-autotools-package))