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@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Andreas Müller 2019-04-07 22:06:55 +02:00 committed by Khem Raj
parent 3132252361
commit 71117c3cf2

View File

@ -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
}