blktrace: add back do_install method
authorSaul Wold <sgw@linux.intel.com>
Mon, 21 Jan 2013 22:44:42 +0000 (14:44 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 22 Jan 2013 15:52:44 +0000 (15:52 +0000)
The recent change to blktrace removed the do_install method,
since this recipe does not use autotools it needs to specifiy
a do_install activity.

(From OE-Core rev: f8832d969746fb879e63d1b28e6beef5ab82a39d)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-kernel/blktrace/blktrace_git.bb

index 80cb14c..a318f0e 100644 (file)
@@ -6,7 +6,7 @@ DEPENDS = "libaio"
 
 SRCREV = "d6918c8832793b4205ed3bfede78c2f915c23385"
 
-PR = "r5"
+PR = "r6"
 PV = "1.0.5+git${SRCPV}"
 
 SRC_URI = "git://git.kernel.dk/blktrace.git;protocol=git \
@@ -20,3 +20,9 @@ EXTRA_OEMAKE = "\
     'LDFLAGS=${LDFLAGS}' \
 "
 PARALLEL_MAKE = ""
+
+do_install() {
+       oe_runmake ARCH="${ARCH}" prefix=${prefix} \
+               mandir=${mandir} DESTDIR=${D} install
+}
+