[oe-commits] [meta-openembedded] 03/13: gvfs: fix typo libexec

git at git.openembedded.org git at git.openembedded.org
Wed Apr 17 03:29:21 UTC 2019


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

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

commit f08a89d06fc01fa3908f12578891698816de589b
Author: Kai Kang <kai.kang at windriver.com>
AuthorDate: Mon Apr 15 02:32:33 2019 -0400

    gvfs: fix typo libexec
    
    I believe ${libexec} is a typo here which should be ${libexecdir}.
    Otherwise, the execute bit of ${datadir}/polkit-1/rules.d will be set
    and previous workaround which chmod ${datadir}/polkit-1/rules.d does not
    work.
    
    Replace tab with spaces at same time.
    
    Signed-off-by: Kai Kang <kai.kang at windriver.com>
    Acked-By: Andreas Müller <schnitzeltony at gmail.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb b/meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb
index 8fed9e8..35367ae 100644
--- a/meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb
+++ b/meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb
@@ -63,14 +63,14 @@ PACKAGECONFIG[cdda] = "-Dcdda=true, -Dcdda=false, libcdio-paranoia"
 
 do_install_append() {
     # Fix up permissions on polkit rules.d to work with rpm4 constraints
-	chmod 700 ${D}/${datadir}/polkit-1/rules.d
-	chown polkitd:root ${D}/${datadir}/polkit-1/rules.d
+    chmod 700 ${D}/${datadir}/polkit-1/rules.d
+    chown polkitd:root ${D}/${datadir}/polkit-1/rules.d
 
     # After rebuilds (not from scracth) it can happen that the executables in
     # libexec ar missing executable permission flag. Not sure but it came up
     # during transition to meson. Looked into build files and logs but could
     # not find suspicious
-    for exe in `find ${D}/${libexec}`; do
+    for exe in `find ${D}/${libexecdir}`; do
        chmod +x $exe
     done
 

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


More information about the Openembedded-commits mailing list