61de612a0b
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>
17 lines
485 B
Makefile
17 lines
485 B
Makefile
################################################################################
|
|
#
|
|
# sshfs
|
|
#
|
|
################################################################################
|
|
|
|
SSHFS_VERSION = 2.8
|
|
SSHFS_SITE = https://github.com/libfuse/sshfs/releases/download/sshfs_$(SSHFS_VERSION)
|
|
SSHFS_LICENSE = GPL-2.0
|
|
SSHFS_LICENSE_FILES = COPYING
|
|
SSHFS_DEPENDENCIES = \
|
|
libglib2 libfuse openssh \
|
|
$(TARGET_NLS_DEPENDENCIES) \
|
|
$(if $(BR2_ENABLE_LOCALE),,libiconv)
|
|
|
|
$(eval $(autotools-package))
|