[oe-commits] [meta-openembedded] 03/25: fuse: let overriding base_sbindir have the proper effect.

git at git.openembedded.org git at git.openembedded.org
Wed Jun 14 12:51:59 UTC 2017


This is an automated email from the git hooks/post-receive script.

martin_jansa pushed a commit to branch master
in repository meta-openembedded.

commit 5ab7b440bcdbdffccc57a0c4e5c509a7282b12a1
Author: Krisztian Litkey <krisztian.litkey at intel.com>
AuthorDate: Tue Jun 6 19:46:37 2017 +0300

    fuse: let overriding base_sbindir have the proper effect.
    
    Set MOUNT_FUSE_PATH explicitly to ${base_sbindir} before configure.
    Making this explicit will let people override base_sbindir with the
    desired effect (for instance when building a distro with merged /
    and /usr).
    
    Signed-off-by: Krisztian Litkey <krisztian.litkey at intel.com>
---
 meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb b/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb
index e66f3cd..0095f39 100644
--- a/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb
+++ b/meta-filesystems/recipes-support/fuse/fuse_2.9.7.bb
@@ -44,6 +44,11 @@ FILES_fuse-utils-dbg = "${bindir}/.debug ${base_sbindir}/.debug"
 DEBIAN_NOAUTONAME_fuse-utils = "1"
 DEBIAN_NOAUTONAME_fuse-utils-dbg = "1"
 
+do_configure_prepend() {
+    # Make this explicit so overriding base_sbindir propagates properly.
+    export MOUNT_FUSE_PATH="${base_sbindir}"
+}
+
 do_install_append() {
     rm -rf ${D}${base_prefix}/dev
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list