summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-20 21:26:02 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-21 23:44:08 +0100
commit3f53f869ae8d483e402d6e43454080fc147b31ad (patch)
tree489942635dbcfc2c117be3dd2a39ea1858af26bb /meta
parent27024e544bbc6bf096e33467c90c85f5cbcab14e (diff)
downloadpoky-3f53f869ae8d483e402d6e43454080fc147b31ad.tar.gz
cross: Drop unused do_install
All the users of the cross class I could find redefine the do_install function. It is unusual and likely undesirable for the class to be changing this from the default and likely a leftover from different times. Remove it as it isn't doing anything. [YOCTO #9272] (From OE-Core rev: 72f0e03a6909e6856510d913863fc9301de32cec) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/cross.bbclass4
1 files changed, 0 insertions, 4 deletions
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass
index 00e0de84f3..3e6a2f60b9 100644
--- a/meta/classes/cross.bbclass
+++ b/meta/classes/cross.bbclass
@@ -72,10 +72,6 @@ libexecdir = "${exec_prefix}/libexec/${CROSS_TARGET_SYS_DIR}"
72do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}/${STAGING_DIR_NATIVE}/" 72do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}/${STAGING_DIR_NATIVE}/"
73do_packagedata[stamp-extra-info] = "" 73do_packagedata[stamp-extra-info] = ""
74 74
75do_install () {
76 oe_runmake 'DESTDIR=${D}' install
77}
78
79USE_NLS = "no" 75USE_NLS = "no"
80 76
81export CC = "${BUILD_CC}" 77export CC = "${BUILD_CC}"