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:03:26 +0100 |
commit | 01300254d710c91b3dbcded9c42f6dcf21b75462 (patch) | |
tree | 28192430bcbf78cdd58e9dff0f7c50ea0c3b180d | |
parent | e2fa821033785a44f80002eafac73b7e110023ce (diff) | |
download | openembedded-core-01300254d710c91b3dbcded9c42f6dcf21b75462.tar.gz openembedded-core-01300254d710c91b3dbcded9c42f6dcf21b75462.tar.bz2 openembedded-core-01300254d710c91b3dbcded9c42f6dcf21b75462.zip |
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
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-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" SRCREV = "8c3919ea2dc77fdd47fb1c90e41490a20bb4d478" PV = "v2.0.1+git${SRCREV}" -PR = "r0" +PR = "r1" SRC_URI = "git://git.lttng.org/lttng-tools.git;protocol=git" @@ -26,6 +26,11 @@ export KERNELDIR="${STAGING_KERNEL_DIR}" FILES_${PN} += "${libdir}/lttng/libexec/*" FILES_${PN}-dbg += "${libdir}/lttng/libexec/.debug" +# Since files are installed into ${libdir}/lttng/libexec we match +# the libexec insane test so skip it. +INSANE_SKIP_${PN} = "libexec" +INSANE_SKIP_${PN}-dbg = "libexec" + # Due to liburcu not building for MIPS currently this recipe needs to # be limited also. # So here let us first suppport x86/arm/powerpc platforms now. |