summaryrefslogtreecommitdiffstats
path: root/recipes-ti
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2019-08-02 23:14:39 +0000
committerDenys Dmytriyenko <denys@ti.com>2019-08-02 22:01:51 +0000
commita6361a627951cea0f6476cb3c4930ba80807fa2d (patch)
tree87548ef29a3b8ed09a9eb9b82fcbd55122942901 /recipes-ti
parenta09ea34f4fdf64eea8f89383785e3ff64cc1499f (diff)
downloadmeta-ti-a6361a627951cea0f6476cb3c4930ba80807fa2d.tar.gz
swtools: actually use defined CP_ARGS
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti')
-rw-r--r--recipes-ti/swtools/swtools_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-ti/swtools/swtools_git.bb b/recipes-ti/swtools/swtools_git.bb
index 3e7105b6..a482ea6a 100644
--- a/recipes-ti/swtools/swtools_git.bb
+++ b/recipes-ti/swtools/swtools_git.bb
@@ -41,7 +41,7 @@ do_compile() {
41do_install() { 41do_install() {
42 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership" 42 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
43 install -d ${D}${SWTOOLS_INSTALL_DIR_RECIPE} 43 install -d ${D}${SWTOOLS_INSTALL_DIR_RECIPE}
44 cp -pPrf ${S}/* ${D}${SWTOOLS_INSTALL_DIR_RECIPE} 44 cp ${CP_ARGS} ${S}/* ${D}${SWTOOLS_INSTALL_DIR_RECIPE}
45} 45}
46 46
47FILES_${PN}-dev += "${SWTOOLS_INSTALL_DIR_RECIPE}" 47FILES_${PN}-dev += "${SWTOOLS_INSTALL_DIR_RECIPE}"