From: Joshua Watt Date: Wed, 13 Nov 2019 21:24:00 +0000 (-0600) Subject: icecc-create-env: Use OE patchelf in SDK X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~12784 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0293d9734372c90a0b4eec7967b55e0db96102e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git icecc-create-env: Use OE patchelf in SDK The Icecream environment creation script runs when the SDK is installed and uses patchelf to fix up executables. Rather than rely on the host system to provided patchelf (which often can be older versions that produce buggy executables), mark the OE version of patchelf as a dependency of icecc-create-env when included in the SDK. Signed-off-by: Joshua Watt Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb b/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb index 053945ebbc6..231c1c20ec0 100644 --- a/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb +++ b/meta/recipes-devtools/icecc-create-env/icecc-create-env_0.1.bb @@ -34,3 +34,5 @@ do_install() { } BBCLASSEXTEND = "native nativesdk" + +RDEPENDS_${PN}_class-nativesdk = "patchelf"