diff options
-rw-r--r-- | meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb | 10 |
1 files changed, 9 insertions, 1 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 7b9a16e9ea..df9fd50ea1 100644 --- a/meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb +++ b/meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb | |||
@@ -61,8 +61,16 @@ PACKAGECONFIG[fuse] = "-Dfuse=true, -Dfuse=false, fuse" | |||
61 | # libcdio-paranoia recipe doesn't exist yet | 61 | # libcdio-paranoia recipe doesn't exist yet |
62 | PACKAGECONFIG[cdda] = "-Dcdda=true, -Dcdda=false, libcdio-paranoia" | 62 | PACKAGECONFIG[cdda] = "-Dcdda=true, -Dcdda=false, libcdio-paranoia" |
63 | 63 | ||
64 | # Fix up permissions on polkit rules.d to work with rpm4 constraints | ||
65 | do_install_append() { | 64 | do_install_append() { |
65 | # Fix up permissions on polkit rules.d to work with rpm4 constraints | ||
66 | chmod 700 ${D}/${datadir}/polkit-1/rules.d | 66 | chmod 700 ${D}/${datadir}/polkit-1/rules.d |
67 | chown polkitd:root ${D}/${datadir}/polkit-1/rules.d | 67 | chown polkitd:root ${D}/${datadir}/polkit-1/rules.d |
68 | |||
69 | # After rebuilds (not from scracth) it can happen that the executables in | ||
70 | # libexec ar missing executable permission flag. Not sure but it came up | ||
71 | # during transition to meson. Looked into build files and logs but could | ||
72 | # not find suspicious | ||
73 | for exe in `find ${D}/${libexec}`; do | ||
74 | chmod +x $exe | ||
75 | done | ||
68 | } | 76 | } |