diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-04 12:19:02 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 01:27:25 +0200 |
commit | 39ec557f2db992bea439c24ddabf64ee549d4274 (patch) | |
tree | 031f9f8ecc6f1116293ccacd4e5dde7cf392ed42 | |
parent | cdc194883f1f3968cfd8d6683ce67f6c5bbbde84 (diff) | |
download | buildroot-39ec557f2db992bea439c24ddabf64ee549d4274.tar.gz buildroot-39ec557f2db992bea439c24ddabf64ee549d4274.zip |
fetchmail: 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 <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/fetchmail/fetchmail.mk | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/package/fetchmail/fetchmail.mk b/package/fetchmail/fetchmail.mk index 164b2f8ad8..37bbeabf62 100644 --- a/package/fetchmail/fetchmail.mk +++ b/package/fetchmail/fetchmail.mk @@ -24,12 +24,8 @@ FETCHMAIL_CONF_OPTS = \ FETCHMAIL_DEPENDENCIES = \ ca-certificates \ - openssl - -# libintl is an optional dependency -ifeq ($(BR2_PACKAGE_GETTEXT),y) -FETCHMAIL_DEPENDENCIES += gettext -endif + openssl \ + $(TARGET_NLS_DEPENDENCIES) # fetchmailconf.py script is not (yet) python3-compliant. # Prevent the pyc-compilation with python-3 from failing by removing this |