diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-03 22:41:06 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 01:27:24 +0200 |
commit | 252a3bccaa35641b355b76c55cdf390cf6333ceb (patch) | |
tree | c81a912a4eb0126782ac14679b43d9f8cd626754 | |
parent | eaf232dbd01b5946c46f0991befa5339c4b4bad0 (diff) | |
download | buildroot-252a3bccaa35641b355b76c55cdf390cf6333ceb.tar.gz buildroot-252a3bccaa35641b355b76c55cdf390cf6333ceb.zip |
curlftpfs: use 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
- dropping BR2_PACKAGE_GETTEXT selection
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/curlftpfs/Config.in | 1 | ||||
-rw-r--r-- | package/curlftpfs/curlftpfs.mk | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package/curlftpfs/Config.in b/package/curlftpfs/Config.in index 986faf157c..c8c432f205 100644 --- a/package/curlftpfs/Config.in +++ b/package/curlftpfs/Config.in @@ -6,7 +6,6 @@ config BR2_PACKAGE_CURLFTPFS depends on !BR2_STATIC_LIBS # libfuse select BR2_PACKAGE_LIBFUSE select BR2_PACKAGE_LIBGLIB2 - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_LIBCURL diff --git a/package/curlftpfs/curlftpfs.mk b/package/curlftpfs/curlftpfs.mk index 585dbf26d3..584d01a6d4 100644 --- a/package/curlftpfs/curlftpfs.mk +++ b/package/curlftpfs/curlftpfs.mk @@ -11,7 +11,7 @@ CURLFTPFS_LICENSE = GPL-2.0 CURLFTPFS_LICENSE_FILES = COPYING CURLFTPFS_DEPENDENCIES = \ libglib2 libfuse openssl libcurl \ - $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \ + $(TARGET_NLS_DEPENDENCIES) \ $(if $(BR2_ENABLE_LOCALE),,libiconv) $(eval $(autotools-package)) |