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:05:37 +0100 |
commit | 805d80eb30fb34b3d2a12b8ba4db8b813ff5c475 (patch) | |
tree | ae841045716858c2b02453007af09308986a2c5e /meta | |
parent | 17f76de8ab8b7c9e62c1149017a3fa78866d9300 (diff) | |
download | openembedded-core-805d80eb30fb34b3d2a12b8ba4db8b813ff5c475.tar.gz openembedded-core-805d80eb30fb34b3d2a12b8ba4db8b813ff5c475.tar.bz2 openembedded-core-805d80eb30fb34b3d2a12b8ba4db8b813ff5c475.zip |
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.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta')
-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() { oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} NO_NEWT=1 NO_DWARF=1 } -do_install_perf() { +fakeroot do_install_perf() { oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} DESTDIR=${D} install NO_NEWT=1 NO_DWARF=1 } |