diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2016-01-14 16:19:08 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-01-27 12:36:32 +0100 |
commit | e1e5e884add74f287f27ecae07bd734f6516d4b7 (patch) | |
tree | 82a7a3d7bdbb0e8b2f6d1e200a54f59db9495509 | |
parent | e644f3c8e819c9fd7e5e5859253df3f7158899ce (diff) | |
download | meta-openembedded-e1e5e884add74f287f27ecae07bd734f6516d4b7.tar.gz |
orrery: fix host-user-contaminated
Fix QA warning:
WARNING: QA Issue: orrery: /orrery/usr/share/orrery/deepSky/messier is owned by uid 1000,
which is the same as the user running bitbake. This may be due to host contamination [host-user-contaminated]
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-navigation/orrery/orrery_2.7.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-navigation/orrery/orrery_2.7.bb b/meta-oe/recipes-navigation/orrery/orrery_2.7.bb index b3372b1dae..617afbc99d 100644 --- a/meta-oe/recipes-navigation/orrery/orrery_2.7.bb +++ b/meta-oe/recipes-navigation/orrery/orrery_2.7.bb | |||
@@ -24,6 +24,7 @@ do_configure_prepend() { | |||
24 | do_install_append() { | 24 | do_install_append() { |
25 | install -d ${D}${datadir}/orrery | 25 | install -d ${D}${datadir}/orrery |
26 | cp -a ${S}/data/* ${D}${datadir}/orrery | 26 | cp -a ${S}/data/* ${D}${datadir}/orrery |
27 | chown -R root:root ${D}${datadir}/orrery | ||
27 | install -d ${D}${datadir}/icons | 28 | install -d ${D}${datadir}/icons |
28 | install -m 0755 ${WORKDIR}/orrery.png ${D}${datadir}/icons | 29 | install -m 0755 ${WORKDIR}/orrery.png ${D}${datadir}/icons |
29 | } | 30 | } |