fuse-exfat: fix mount detection of mount.exfat

When package was switched to autotools, "DESTDIR=${D}/${base_sbindir}" was
removed from the recipe. This left the installation target as sbindir
(/usr/sbin/). This breaks `mount -t exfat /dev/sda1 /media/sda1`, because
mount only searches for mount.exfat in /sbin/, /sbin/fs.d/, and /sbin/fs/.

With sbindir = "${base_sbindir}", mount.exfat is installed at /sbin/mount.exfat
where mount can find it.

Signed-off-by: Tom Hayward <tom@harbortronics.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Tom Hayward 2017-03-02 13:01:40 -08:00 committed by Martin Jansa
parent cd5b07e5a8
commit f291c5e076

View File

@ -18,3 +18,4 @@ SRC_URI[md5sum] = "fca71e6598f79d037a3c7c969cb5710c"
SRC_URI[sha256sum] = "f2e06eba5a21c621aac1d6da21b12a5a324fdd1e20f9c8acd357dd463c2355d9"
S = "${WORKDIR}/${PN}-${PV}"
EXTRA_OECONF += "sbindir=${base_sbindir}"