diff options
author | Kai Kang <kai.kang@windriver.com> | 2015-11-20 15:39:48 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-12-18 12:39:50 +0100 |
commit | 00264bf4b3adad0cc2b083acbe23fdb3235c5874 (patch) | |
tree | f6a1ab4e641965358b9125e96b1e51238ee8e5f3 | |
parent | e91bab37468e3bea5fc279f44ed1dbe1687f328a (diff) | |
download | meta-openembedded-00264bf4b3adad0cc2b083acbe23fdb3235c5874.tar.gz |
apache2: fix host-user-contaminated warnings
It shows warnings when build apache2 such as:
| WARNING: QA Issue: apache2: /apache2-dev/usr/share/apache2/icons/small/movie.gif
| is owned by uid 1785, which is the same as the user running bitbake.
| This may be due to host contamination [host-user-contaminated]
Set the owner and group to root to fix it.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb index b62fd8c28..48c448ebd 100644 --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb | |||
@@ -95,6 +95,8 @@ do_install_append() { | |||
95 | install -m 0644 ${WORKDIR}/apache2.service ${D}${systemd_unitdir}/system | 95 | install -m 0644 ${WORKDIR}/apache2.service ${D}${systemd_unitdir}/system |
96 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/apache2.service | 96 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/apache2.service |
97 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/apache2.service | 97 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/apache2.service |
98 | |||
99 | chown -R root:root ${D} | ||
98 | } | 100 | } |
99 | 101 | ||
100 | do_install_append_class-target() { | 102 | do_install_append_class-target() { |