mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 16:39:40 +01:00
There is a securty issue: http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-5195 Update perl to 5.14.3 to resolve this problem. Patches hurd-ccflags.diff, h2ph-multiarch.diff, index-tainting.diff and hurd-hints.diff have been merged, so remove them from SRC_URI. Update patches config.sh and Makefile.SH.patch with new PV. [Yocto 3701] (From OE-Core rev: b1fd25e05308cabb56afe1d4276470bf7380ea59) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
776 B
Diff
24 lines
776 B
Diff
Hack the dynamic module loader so that we use native modules since we can't load
|
|
the target ones.
|
|
|
|
Upstream-Status: Inappropriate
|
|
|
|
RP
|
|
2013/01/13
|
|
|
|
Index: perl-5.14.2/ext/DynaLoader/DynaLoader_pm.PL
|
|
===================================================================
|
|
--- perl-5.14.2.orig/ext/DynaLoader/DynaLoader_pm.PL 2011-09-19 13:18:22.000000000 +0000
|
|
+++ perl-5.14.2/ext/DynaLoader/DynaLoader_pm.PL 2013-01-19 16:09:51.020584945 +0000
|
|
@@ -310,6 +310,10 @@
|
|
foreach (@INC) {
|
|
<<$^O-eq-VMS>>chop($_ = VMS::Filespec::unixpath($_));<</$^O-eq-VMS>>
|
|
my $dir = "$_/auto/$modpname";
|
|
+
|
|
+ if (defined $ENV{PERL_LIB} and defined $ENV{PERLHOSTLIB}) {
|
|
+ $dir =~ s/$ENV{PERL_LIB}/$ENV{PERLHOSTLIB}/g;
|
|
+ }
|
|
|
|
next unless -d $dir; # skip over uninteresting directories
|
|
|