summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/change-file-endianess/change-file-endianess.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-bsp/change-file-endianess/change-file-endianess.bb')
-rw-r--r--recipes-bsp/change-file-endianess/change-file-endianess.bb13
1 files changed, 11 insertions, 2 deletions
diff --git a/recipes-bsp/change-file-endianess/change-file-endianess.bb b/recipes-bsp/change-file-endianess/change-file-endianess.bb
index 2ad8c5882..ff1828bc2 100644
--- a/recipes-bsp/change-file-endianess/change-file-endianess.bb
+++ b/recipes-bsp/change-file-endianess/change-file-endianess.bb
@@ -3,12 +3,11 @@ LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ 3LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \
4 file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" 4 file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
5 5
6
7SRC_URI = "file://byte_swap.tcl" 6SRC_URI = "file://byte_swap.tcl"
8 7
9RDEPENDS += "tcl-native" 8RDEPENDS += "tcl-native"
10 9
11inherit native 10inherit native deploy
12 11
13S = "${WORKDIR}" 12S = "${WORKDIR}"
14 13
@@ -20,4 +19,14 @@ do_install () {
20 install -m 755 ${WORKDIR}/byte_swap.tcl ${D}/${bindir} 19 install -m 755 ${WORKDIR}/byte_swap.tcl ${D}/${bindir}
21} 20}
22 21
22do_deploy () {
23 :
24}
25
26do_deploy_class-native () {
27 install -d ${DEPLOYDIR}
28 cp -f ${STAGING_BINDIR_NATIVE}/byte_swap.tcl ${DEPLOYDIR}/
29}
30addtask deploy before do_build after do_populate_sysroot
31
23BBCLASSEXTEND = "native nativesdk" 32BBCLASSEXTEND = "native nativesdk"