diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-06-20 13:26:06 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-23 12:07:37 +0100 |
commit | 1bf6ab481453d5f550d9382a76baa848be878f12 (patch) | |
tree | 056d442c9af922b139c19dab70b1afcff65bcd29 /meta/recipes-kernel | |
parent | d9fc516d73eb0d5a7f5bffe219cc9097554083d7 (diff) | |
download | poky-1bf6ab481453d5f550d9382a76baa848be878f12.tar.gz |
perf: Fix linux-tools to ensure perf is installed under "fakeroot"
If perf isn't installed under "fakeroot" (pseudo) control, all of the files
are given the build user's uid/gid.
(From OE-Core rev: 805d80eb30fb34b3d2a12b8ba4db8b813ff5c475)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/linux-tools.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-tools.inc b/meta/recipes-kernel/linux/linux-tools.inc index ef81650094..e4740d73bb 100644 --- a/meta/recipes-kernel/linux/linux-tools.inc +++ b/meta/recipes-kernel/linux/linux-tools.inc | |||
@@ -10,7 +10,7 @@ do_compile_perf() { | |||
10 | oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} NO_NEWT=1 NO_DWARF=1 | 10 | oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} NO_NEWT=1 NO_DWARF=1 |
11 | } | 11 | } |
12 | 12 | ||
13 | do_install_perf() { | 13 | fakeroot do_install_perf() { |
14 | oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} DESTDIR=${D} install NO_NEWT=1 NO_DWARF=1 | 14 | oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} DESTDIR=${D} install NO_NEWT=1 NO_DWARF=1 |
15 | } | 15 | } |
16 | 16 | ||