From 1d1d9b0c7fa69ad99d6ad9edac4754257ecf7e80 Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Tue, 30 Dec 2014 15:11:06 +0100 Subject: [PATCH] mqxboot: provide explicit do_install 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 Signed-off-by: Otavio Salvador --- meta-fsl-arm/recipes-bsp/mqxboot/mqxboot_1.0.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta-fsl-arm/recipes-bsp/mqxboot/mqxboot_1.0.bb b/meta-fsl-arm/recipes-bsp/mqxboot/mqxboot_1.0.bb index 12939285..5009209c 100644 --- a/meta-fsl-arm/recipes-bsp/mqxboot/mqxboot_1.0.bb +++ b/meta-fsl-arm/recipes-bsp/mqxboot/mqxboot_1.0.bb @@ -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 +} -- 2.40.1