diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-11-23 14:55:42 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-11-29 11:04:54 +0100 |
commit | 92bf1cf3684ec0c435feafab4694e7820bbd5fe1 (patch) | |
tree | 18d6a36f3e32609e7c345dd3917d83b0ae6e31d9 | |
parent | 6ba5d2f782f9310e48a39146a98da2ed8843f380 (diff) | |
download | meta-openembedded-92bf1cf3684ec0c435feafab4694e7820bbd5fe1.tar.gz |
e-wm: fix file permissions on sysactions.conf
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-efl/recipes-efl/e17/e-wm_svn.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-efl/recipes-efl/e17/e-wm_svn.bb b/meta-efl/recipes-efl/e17/e-wm_svn.bb index d5f92bb6a..abee301a1 100644 --- a/meta-efl/recipes-efl/e17/e-wm_svn.bb +++ b/meta-efl/recipes-efl/e17/e-wm_svn.bb | |||
@@ -4,7 +4,7 @@ LICENSE = "MIT BSD" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=76de290eb3fdda12121830191c152a7d" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=76de290eb3fdda12121830191c152a7d" |
5 | SRCNAME = "e" | 5 | SRCNAME = "e" |
6 | PV = "0.16.999.060+svnr${SRCPV}" | 6 | PV = "0.16.999.060+svnr${SRCPV}" |
7 | PR = "r9" | 7 | PR = "r10" |
8 | SRCREV = "${EFL_SRCREV}" | 8 | SRCREV = "${EFL_SRCREV}" |
9 | 9 | ||
10 | inherit e update-alternatives gettext | 10 | inherit e update-alternatives gettext |
@@ -32,6 +32,10 @@ do_install_append() { | |||
32 | # customising - should rather make this simple upstream | 32 | # customising - should rather make this simple upstream |
33 | install -m 755 ${WORKDIR}/enlightenment_start.oe ${D}/${bindir} | 33 | install -m 755 ${WORKDIR}/enlightenment_start.oe ${D}/${bindir} |
34 | 34 | ||
35 | # security reasons, e-wm checks that in runtime | ||
36 | # xinit[418]: ERROR: CONFIGURATION FILE HAS BAD PERMISSIONS | ||
37 | chmod 600 ${D}/${sysconfdir}/enlightenment/sysactions.conf | ||
38 | |||
35 | install -d ${D}/${datadir}/applications/ | 39 | install -d ${D}/${datadir}/applications/ |
36 | install -m 644 ${S}/src/modules/fileman/module.desktop ${D}/${datadir}/applications/efm.desktop | 40 | install -m 644 ${S}/src/modules/fileman/module.desktop ${D}/${datadir}/applications/efm.desktop |
37 | sed "s#Type=Link#Type=Application#g" -i ${D}/${datadir}/applications/efm.desktop | 41 | sed "s#Type=Link#Type=Application#g" -i ${D}/${datadir}/applications/efm.desktop |