From 79d2df777bef0aa64e58723ce2a06169761e8c17 Mon Sep 17 00:00:00 2001 From: Yi Zhao Date: Thu, 14 Jan 2016 16:19:06 +0800 Subject: [PATCH] debootstrap: fix host-user-contaminated Fix QA warning: WARNING: QA Issue: debootstrap: /debootstrap/usr/share/debootstrap/scripts/gutsy 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 Signed-off-by: Martin Jansa --- meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.67.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.67.bb b/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.67.bb index 73dea9b823..62b2796181 100644 --- a/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.67.bb +++ b/meta-oe/recipes-devtools/debootstrap/debootstrap_1.0.67.bb @@ -31,4 +31,5 @@ do_compile_prepend() { do_install() { oe_runmake 'DESTDIR=${D}' install + chown -R root:root ${D}${datadir}/debootstrap }