[oe-commits] [meta-openembedded] 08/26: gvfs: remove executable permission from systemd user services

git at git.openembedded.org git at git.openembedded.org
Wed Apr 10 01:10:46 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 71117c3cf299b40be41d9651aef740f524ce2efe
Author: Andreas Müller <schnitzeltony at gmail.com>
AuthorDate: Sun Apr 7 22:06:55 2019 +0200

    gvfs: remove executable permission from systemd user services
    
    As written in comment: Looks to me as if meson build is not yet working as
    it should for gvfs. Looked into but did not find suspicious. So just remove
    flags for now.
    
    Signed-off-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 | 8 ++++++++
 1 file changed, 8 insertions(+)

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 df9fd50..8fed9e8 100644
--- a/meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb
+++ b/meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb
@@ -73,4 +73,12 @@ do_install_append() {
     for exe in `find ${D}/${libexec}`; do
        chmod +x $exe
     done
+
+    # Something sets user services executable - looks a bit as if meson
+    # transition has room for enhancements...
+    # Systemd warns with messages as:
+    # Apr 07 01:00:33 raspberrypi3 systemd[348]: Configuration file /usr/lib/systemd/user/gvfs-mtp-volume-monitor.service is marked executable. Please remove executable permissio>
+    for service in `find ${D}/${systemd_user_unitdir}`; do
+       chmod -x $service
+    done
 }

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


More information about the Openembedded-commits mailing list