diff options
author | 2022-05-09 17:59:47 +0000 | |
---|---|---|
committer | 2022-05-10 09:56:19 -0500 | |
commit | 2124e7ecd88d1aded320e86da62785c3ab171b27 (patch) | |
tree | 7e075e61216f7dfff7ad5b7f73fd6f1cafe132f0 | |
parent | f10ed11082eb13c555d33b5f43815f61977cd33a (diff) | |
download | meta-ti-HEAD.tar.gz meta-ti-HEAD.tar.bz2 meta-ti-HEAD.zip |
dsptop: fix host contamination warningHEADmasterkirkstone-wipkirkstone-nextkirkstoneHEAD
Fixes this warning:
| WARNING: dsptop-1.4.0-r2.2 do_package_qa: QA Issue: dsptop: /usr/bin/dsptop 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: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb index e8853ff8..90ce8943 100644 --- a/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb +++ b/meta-ti-extras/recipes-bsp/dsptop/dsptop_git.bb @@ -15,6 +15,7 @@ EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX} CC="${CC do_install() { oe_runmake install DESTDIR=${D} + chown -R root:root ${D} } COMPATIBLE_MACHINE = "dra7xx" |