summaryrefslogtreecommitdiffstats
path: root/recipes-ti/devtools/ti-xdctools-common.inc
diff options
context:
space:
mode:
authorJacob Stiffler <j-stiffler@ti.com>2018-02-14 00:18:47 +0000
committerDenys Dmytriyenko <denys@ti.com>2018-02-14 15:30:07 -0500
commitb42044aaf51323d6948e6837884327b182ef9022 (patch)
tree6681e3f0ea71de13b5dc921e63f06cb8d5963f8e /recipes-ti/devtools/ti-xdctools-common.inc
parenta48d804cf710b99389962e3578e74f5a0e261be0 (diff)
downloadmeta-ti-b42044aaf51323d6948e6837884327b182ef9022.tar.gz
ti-xdctools: do not create target package
* ti-xdctools is a host development package, but the target recipe is needed to create the sourceipk used in SDKs. * And move class extension to common include. Signed-off-by: Jacob Stiffler <j-stiffler@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti/devtools/ti-xdctools-common.inc')
-rw-r--r--recipes-ti/devtools/ti-xdctools-common.inc6
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes-ti/devtools/ti-xdctools-common.inc b/recipes-ti/devtools/ti-xdctools-common.inc
index 17166caf..d2d0df45 100644
--- a/recipes-ti/devtools/ti-xdctools-common.inc
+++ b/recipes-ti/devtools/ti-xdctools-common.inc
@@ -7,10 +7,14 @@ require recipes-ti/includes/ti-paths.inc
7require recipes-ti/includes/ti-staging.inc 7require recipes-ti/includes/ti-staging.inc
8 8
9do_install() { 9do_install() {
10 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
11
10 install -d ${D}${XDC_INSTALL_DIR_RECIPE} 12 install -d ${D}${XDC_INSTALL_DIR_RECIPE}
11 cp -pPrf ${S}/* ${D}${XDC_INSTALL_DIR_RECIPE} 13 cp ${CP_ARGS} ${S}/* ${D}${XDC_INSTALL_DIR_RECIPE}
12} 14}
13 15
16BBCLASSEXTEND = "native nativesdk"
17
14INHIBIT_PACKAGE_STRIP = "1" 18INHIBIT_PACKAGE_STRIP = "1"
15INHIBIT_SYSROOT_STRIP = "1" 19INHIBIT_SYSROOT_STRIP = "1"
16INHIBIT_PACKAGE_DEBUG_SPLIT = "1" 20INHIBIT_PACKAGE_DEBUG_SPLIT = "1"