]> code.ossystems Code Review - meta-freescale.git/commitdiff
mqxboot: provide explicit do_install
authorMax Krummenacher <max.oss.09@gmail.com>
Tue, 30 Dec 2014 14:11:06 +0000 (15:11 +0100)
committerOtavio Salvador <otavio@ossystems.com.br>
Wed, 31 Dec 2014 19:06:25 +0000 (17:06 -0200)
mqxboot is a pure make project. Inheriting autotools provided an implicit
do_install task, however with the change to seperate builddirs in dizzy
(${B} != ${S}) do_install fails.
Removing autotools and providing an explicit do_install task fixes this.

Signed-off-by: Max Krummenacher <max.oss.09@gmail.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
meta-fsl-arm/recipes-bsp/mqxboot/mqxboot_1.0.bb

index 12939285663870e69e4cfbe43e0cba8bd5286b01..5009209c0f55586a97716a0f3359f1f00048178d 100644 (file)
@@ -5,8 +5,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c49712341497d0b5f2e40c30dff2af9d"
 
 DEPENDS = "kernel-module-mcc"
 
-inherit autotools
-
 SRC_URI = "http://repository.timesys.com/buildsources/m/mqxboot/mqxboot-${PV}/mqxboot-${PV}.tar.bz2"
 
 SRC_URI[md5sum] = "3de3c8b5f8cd6664870587d29c04c421"
@@ -19,3 +17,7 @@ CFLAGS += "-I${STAGING_KERNEL_DIR}/include"
 RDEPENDS_${PN} = "kernel-module-mcc"
 
 COMPATIBLE_MACHINE = "(vf60)"
+
+do_install() {
+    oe_runmake 'DESTDIR=${D}' install
+}