summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2018-03-27 05:19:02 +0000
committerDenys Dmytriyenko <denys@ti.com>2018-03-27 22:13:16 -0400
commitc75902295d5fa80f3c9c22a8d526c61a0e304eec (patch)
treef7ed40e28d56d8d44e6ad533c550a3c629e8dbda
parentb67f4e5397db7ba4574891b8f2bec0cf5119b97c (diff)
downloadmeta-ti-c75902295d5fa80f3c9c22a8d526c61a0e304eec.tar.gz
ti-codec-engine: fix host contamination warnings
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r--recipes-ti/codec-engine/ti-codec-engine_3.24.00.08.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-ti/codec-engine/ti-codec-engine_3.24.00.08.bb b/recipes-ti/codec-engine/ti-codec-engine_3.24.00.08.bb
index 06a7ce13..aa538412 100644
--- a/recipes-ti/codec-engine/ti-codec-engine_3.24.00.08.bb
+++ b/recipes-ti/codec-engine/ti-codec-engine_3.24.00.08.bb
@@ -19,10 +19,10 @@ S = "${WORKDIR}/codec_engine_${PV}"
19SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/ce/${PV}/exports/codec_engine_${PV},lite.tar.gz;name=cetarball " 19SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/ce/${PV}/exports/codec_engine_${PV},lite.tar.gz;name=cetarball "
20 20
21do_install() { 21do_install() {
22 22 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
23 # Install/Stage the Source Tree 23 # Install/Stage the Source Tree
24 install -d ${D}${CE_INSTALL_DIR_RECIPE} 24 install -d ${D}${CE_INSTALL_DIR_RECIPE}
25 cp -pPrf ${S}/* ${D}${CE_INSTALL_DIR_RECIPE} 25 cp ${CP_ARGS} ${S}/* ${D}${CE_INSTALL_DIR_RECIPE}
26} 26}
27 27
28ALLOW_EMPTY_${PN} = "1" 28ALLOW_EMPTY_${PN} = "1"