summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2013-01-21 14:44:42 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-22 15:52:44 +0000
commita789dc9175017efcf46f868e27a16c21114cfcff (patch)
tree694691880637e123ef9551531b5b20014419fbf7
parentc3256233c6ce27e8ef0cecfbd4939bb3bedc16ad (diff)
downloadpoky-a789dc9175017efcf46f868e27a16c21114cfcff.tar.gz
blktrace: add back do_install method
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>
-rw-r--r--meta/recipes-kernel/blktrace/blktrace_git.bb8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-kernel/blktrace/blktrace_git.bb b/meta/recipes-kernel/blktrace/blktrace_git.bb
index 80cb14c82e..a318f0ecf9 100644
--- a/meta/recipes-kernel/blktrace/blktrace_git.bb
+++ b/meta/recipes-kernel/blktrace/blktrace_git.bb
@@ -6,7 +6,7 @@ DEPENDS = "libaio"
6 6
7SRCREV = "d6918c8832793b4205ed3bfede78c2f915c23385" 7SRCREV = "d6918c8832793b4205ed3bfede78c2f915c23385"
8 8
9PR = "r5" 9PR = "r6"
10PV = "1.0.5+git${SRCPV}" 10PV = "1.0.5+git${SRCPV}"
11 11
12SRC_URI = "git://git.kernel.dk/blktrace.git;protocol=git \ 12SRC_URI = "git://git.kernel.dk/blktrace.git;protocol=git \
@@ -20,3 +20,9 @@ EXTRA_OEMAKE = "\
20 'LDFLAGS=${LDFLAGS}' \ 20 'LDFLAGS=${LDFLAGS}' \
21" 21"
22PARALLEL_MAKE = "" 22PARALLEL_MAKE = ""
23
24do_install() {
25 oe_runmake ARCH="${ARCH}" prefix=${prefix} \
26 mandir=${mandir} DESTDIR=${D} install
27}
28