e7f32dc3c6
"mount" from the "util-linux" package does expect the helper utilities in "/sbin" and not "/usr/sbin". We use "--exec-prefix=/" to fix the issue. The man-pages are then still installed under "/usr/share/man". Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> Tested-by: Carlos Santos <unixmania@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
531 B
Makefile
18 lines
531 B
Makefile
################################################################################
|
|
#
|
|
# exfat
|
|
#
|
|
################################################################################
|
|
|
|
EXFAT_VERSION = 1.3.0
|
|
EXFAT_SITE = https://github.com/relan/exfat/releases/download/v$(EXFAT_VERSION)
|
|
EXFAT_SOURCE = fuse-exfat-$(EXFAT_VERSION).tar.gz
|
|
EXFAT_DEPENDENCIES = libfuse host-pkgconf
|
|
EXFAT_LICENSE = GPL-3.0+
|
|
EXFAT_LICENSE_FILES = COPYING
|
|
EXFAT_CFLAGS = $(TARGET_CFLAGS) -std=c99
|
|
|
|
EXFAT_CONF_OPTS += --exec-prefix=/
|
|
|
|
$(eval $(autotools-package))
|