From: Tom Rini Date: Mon, 16 May 2011 20:14:12 +0000 (-0700) Subject: perl-native: create_wrapper on perl${PV} too X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~45578 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e601cfb307bc9064a2478a87ad3097e21871ff7;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git perl-native: create_wrapper on perl${PV} too perl${PV} becomes hostperl when building for the target so we need a wrapper on that too. This is 1e255fbd296e95ff178d66c4a1fe4875a988d7e1 in OE. Signed-off-by: Tom Rini --- diff --git a/meta/recipes-devtools/perl/perl-native_5.12.3.bb b/meta/recipes-devtools/perl/perl-native_5.12.3.bb index f477679cbe0..cbb4e78c1f5 100644 --- a/meta/recipes-devtools/perl/perl-native_5.12.3.bb +++ b/meta/recipes-devtools/perl/perl-native_5.12.3.bb @@ -97,4 +97,5 @@ do_install () { done create_wrapper ${D}${bindir}/perl PERL5LIB='$PERL5LIB:${STAGING_LIBDIR}/perl/${PV}:${STAGING_LIBDIR}/perl/' + create_wrapper ${D}${bindir}/perl${PV} PERL5LIB='$PERL5LIB:${STAGING_LIBDIR}/perl/${PV}:${STAGING_LIBDIR}/perl/' }