diff options
author | Saul Wold <sgw@linux.intel.com> | 2013-01-21 14:44:42 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-22 15:52:44 +0000 |
commit | a789dc9175017efcf46f868e27a16c21114cfcff (patch) | |
tree | 694691880637e123ef9551531b5b20014419fbf7 /meta/recipes-kernel | |
parent | c3256233c6ce27e8ef0cecfbd4939bb3bedc16ad (diff) | |
download | poky-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>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/blktrace/blktrace_git.bb | 8 |
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 | ||
7 | SRCREV = "d6918c8832793b4205ed3bfede78c2f915c23385" | 7 | SRCREV = "d6918c8832793b4205ed3bfede78c2f915c23385" |
8 | 8 | ||
9 | PR = "r5" | 9 | PR = "r6" |
10 | PV = "1.0.5+git${SRCPV}" | 10 | PV = "1.0.5+git${SRCPV}" |
11 | 11 | ||
12 | SRC_URI = "git://git.kernel.dk/blktrace.git;protocol=git \ | 12 | SRC_URI = "git://git.kernel.dk/blktrace.git;protocol=git \ |
@@ -20,3 +20,9 @@ EXTRA_OEMAKE = "\ | |||
20 | 'LDFLAGS=${LDFLAGS}' \ | 20 | 'LDFLAGS=${LDFLAGS}' \ |
21 | " | 21 | " |
22 | PARALLEL_MAKE = "" | 22 | PARALLEL_MAKE = "" |
23 | |||
24 | do_install() { | ||
25 | oe_runmake ARCH="${ARCH}" prefix=${prefix} \ | ||
26 | mandir=${mandir} DESTDIR=${D} install | ||
27 | } | ||
28 | |||