diff options
author | Armin Kuster <akuster@mvista.com> | 2016-01-31 11:55:30 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-07 22:53:22 +0000 |
commit | d53a0d410ae2390528f1090a131cd3e16d7ebcc5 (patch) | |
tree | e7fb29e15d15f89c115a17a4ef96187e10b936cb /meta/recipes-core/glibc/glibc-locale.inc | |
parent | e86947bb79a9cb1b59a564ee511739f8a2b2b913 (diff) | |
download | openembedded-core-d53a0d410ae2390528f1090a131cd3e16d7ebcc5.tar.gz openembedded-core-d53a0d410ae2390528f1090a131cd3e16d7ebcc5.tar.bz2 openembedded-core-d53a0d410ae2390528f1090a131cd3e16d7ebcc5.zip |
glibc-locale: fix QA warning
WARNING: QA Issue: glibc-locale: /glibc-binary-localedata-sd-in/usr/lib/locale/sd_IN/LC_CTYPE is owned by uid 1000, which is the same as the user running bitbake. This may be due to host contamination [host-user-contaminated]
fix type
Signed-off-by: Armin Kuster <akuster@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc/glibc-locale.inc')
-rw-r--r-- | meta/recipes-core/glibc/glibc-locale.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/glibc/glibc-locale.inc b/meta/recipes-core/glibc/glibc-locale.inc index ad1fc5cfd7..e868e38a97 100644 --- a/meta/recipes-core/glibc/glibc-locale.inc +++ b/meta/recipes-core/glibc/glibc-locale.inc @@ -86,7 +86,7 @@ do_install () { if [ -e ${LOCALETREESRC}/${datadir}/locale ]; then cp -fpPR ${LOCALETREESRC}/${datadir}/locale ${D}${datadir} fi - chown root.root -R ${D} + chown root:root -R ${D} cp -fpPR ${LOCALETREESRC}/SUPPORTED ${WORKDIR} } |