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>
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"
RDEPENDS_${PN} = "kernel-module-mcc"
COMPATIBLE_MACHINE = "(vf60)"
+
+do_install() {
+ oe_runmake 'DESTDIR=${D}' install
+}