6b6d8ec4e9
Fixes: CVE-2015-3202 - fix exec environment for mount and umount. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
786 B
Makefile
25 lines
786 B
Makefile
################################################################################
|
|
#
|
|
# libfuse
|
|
#
|
|
################################################################################
|
|
|
|
LIBFUSE_VERSION = 2.9.4
|
|
LIBFUSE_SOURCE = fuse-$(LIBFUSE_VERSION).tar.gz
|
|
LIBFUSE_SITE = http://downloads.sourceforge.net/project/fuse/fuse-2.X/$(LIBFUSE_VERSION)
|
|
LIBFUSE_LICENSE = GPLv2 LGPLv2.1
|
|
LIBFUSE_LICENSE_FILES = COPYING COPYING.LIB
|
|
LIBFUSE_INSTALL_STAGING = YES
|
|
LIBFUSE_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
LIBFUSE_CONF_OPTS = \
|
|
--disable-example \
|
|
--enable-lib \
|
|
--enable-util
|
|
|
|
define LIBFUSE_INSTALL_TARGET_CMDS
|
|
cp -dpf $(STAGING_DIR)/usr/bin/fusermount $(TARGET_DIR)/usr/bin/
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libfuse.so* $(TARGET_DIR)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|