libmcc 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/l/libmcc/libmcc-${PV}/libmcc-${PV}.tar.bz2"
SRC_URI[md5sum] = "cc3965f162dd20b8e6b9babf5dd963ee"
RDEPENDS_${PN} = "kernel-module-mcc"
COMPATIBLE_MACHINE = "(vf60)"
+
+do_install() {
+ oe_runmake 'DESTDIR=${D}' install
+}