diff options
| author | Kai Kang <kai.kang@windriver.com> | 2019-04-15 02:32:33 -0400 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2019-04-16 21:07:25 -0700 |
| commit | dda73a8b3595da88bf729181414b13ce3068ee2e (patch) | |
| tree | 06c594c2866c6f3806eede39cc620eb212b617ba | |
| parent | 41d0ee6e5d9c36b70a4f8fd468d48dee2782fc23 (diff) | |
| download | meta-openembedded-dda73a8b3595da88bf729181414b13ce3068ee2e.tar.gz | |
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@windriver.com>
Acked-By: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-gnome/recipes-gnome/gvfs/gvfs_1.40.0.bb | 6 |
1 files 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 8fed9e825a..35367ae117 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" | |||
| 63 | 63 | ||
| 64 | do_install_append() { | 64 | do_install_append() { |
| 65 | # Fix up permissions on polkit rules.d to work with rpm4 constraints | 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 | 68 | ||
| 69 | # After rebuilds (not from scracth) it can happen that the executables in | 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 | 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 | 71 | # during transition to meson. Looked into build files and logs but could |
| 72 | # not find suspicious | 72 | # not find suspicious |
| 73 | for exe in `find ${D}/${libexec}`; do | 73 | for exe in `find ${D}/${libexecdir}`; do |
| 74 | chmod +x $exe | 74 | chmod +x $exe |
| 75 | done | 75 | done |
| 76 | 76 | ||
