From e644f3c8e819c9fd7e5e5859253df3f7158899ce Mon Sep 17 00:00:00 2001 From: Yi Zhao Date: Thu, 14 Jan 2016 16:19:07 +0800 Subject: [PATCH] espeak: fix host-user-contaminated Fix QA warning: WARNING: QA Issue: espeak: /espeak/usr/share/espeak-data/mbrola_ph/de6_phtrans 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-support/espeak/espeak_1.37.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-support/espeak/espeak_1.37.bb b/meta-oe/recipes-support/espeak/espeak_1.37.bb index 86f2c7a761..cf05d2645b 100644 --- a/meta-oe/recipes-support/espeak/espeak_1.37.bb +++ b/meta-oe/recipes-support/espeak/espeak_1.37.bb @@ -40,4 +40,5 @@ do_install() { fi cp -prf ${S}/espeak-data/* ${D}${datadir}/espeak-data + chown -R root:root ${D}${datadir}/espeak-data }