diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-09-12 21:42:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-18 12:13:42 +0100 |
commit | 1a57708ba8aa85c66da416554aed5f6748f07cf8 (patch) | |
tree | df3799aea3d82429f1b596c7de7563daf3eedce2 /meta/recipes-kernel | |
parent | c57b610d7020378dae55cbd928e21db166e058cf (diff) | |
download | poky-1a57708ba8aa85c66da416554aed5f6748f07cf8.tar.gz |
lttng-tools: skip new libexec insane test
Because lttng-tools installs files into /usr/lib/lttng/libexec, the test matches
and throws a false positive, so use INSANE_SKIP
(From OE-Core rev: 01300254d710c91b3dbcded9c42f6dcf21b75462)
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/lttng-2.0/lttng-tools_2.0.4.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb b/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb index e7f10163df..cf280c458f 100644 --- a/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb +++ b/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0.4.bb | |||
@@ -13,7 +13,7 @@ DEPENDS = "liburcu popt lttng2-ust" | |||
13 | 13 | ||
14 | SRCREV = "8c3919ea2dc77fdd47fb1c90e41490a20bb4d478" | 14 | SRCREV = "8c3919ea2dc77fdd47fb1c90e41490a20bb4d478" |
15 | PV = "v2.0.1+git${SRCREV}" | 15 | PV = "v2.0.1+git${SRCREV}" |
16 | PR = "r0" | 16 | PR = "r1" |
17 | 17 | ||
18 | SRC_URI = "git://git.lttng.org/lttng-tools.git;protocol=git" | 18 | SRC_URI = "git://git.lttng.org/lttng-tools.git;protocol=git" |
19 | 19 | ||
@@ -26,6 +26,11 @@ export KERNELDIR="${STAGING_KERNEL_DIR}" | |||
26 | FILES_${PN} += "${libdir}/lttng/libexec/*" | 26 | FILES_${PN} += "${libdir}/lttng/libexec/*" |
27 | FILES_${PN}-dbg += "${libdir}/lttng/libexec/.debug" | 27 | FILES_${PN}-dbg += "${libdir}/lttng/libexec/.debug" |
28 | 28 | ||
29 | # Since files are installed into ${libdir}/lttng/libexec we match | ||
30 | # the libexec insane test so skip it. | ||
31 | INSANE_SKIP_${PN} = "libexec" | ||
32 | INSANE_SKIP_${PN}-dbg = "libexec" | ||
33 | |||
29 | # Due to liburcu not building for MIPS currently this recipe needs to | 34 | # Due to liburcu not building for MIPS currently this recipe needs to |
30 | # be limited also. | 35 | # be limited also. |
31 | # So here let us first suppport x86/arm/powerpc platforms now. | 36 | # So here let us first suppport x86/arm/powerpc platforms now. |