summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.12.2/parallel_build_fix_1.patch
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-02-23 13:01:34 -0800
committerSaul Wold <sgw@linux.intel.com>2011-02-24 14:34:48 -0800
commit9eb9125de80d0f0865fa158fd220663be5e1efb0 (patch)
tree7ff37b314988e214653d60a4e05f6e89884b870a /meta/recipes-devtools/perl/perl-5.12.2/parallel_build_fix_1.patch
parent0023e32c03a001a7a4a6a688e26af073df7535b0 (diff)
downloadpoky-9eb9125de80d0f0865fa158fd220663be5e1efb0.tar.gz
perl: import parallel build fixes from upstream git tree
The parallel build issue is fixed in the upstream perl git tree differently. Replacing our fix with the upstream fix. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.12.2/parallel_build_fix_1.patch')
-rw-r--r--meta/recipes-devtools/perl/perl-5.12.2/parallel_build_fix_1.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.12.2/parallel_build_fix_1.patch b/meta/recipes-devtools/perl/perl-5.12.2/parallel_build_fix_1.patch
new file mode 100644
index 0000000000..63e641003c
--- /dev/null
+++ b/meta/recipes-devtools/perl/perl-5.12.2/parallel_build_fix_1.patch
@@ -0,0 +1,25 @@
1Imported from perl git tree by Nitin A Kamble <nitin.a.kamble@intel.com>
22011-02-23
3
4commit 6695a346c41138df5b2c0e26b9a49b1f96137da0
5Author: Tony Cook <tony@openbsd32.tony.develop-help.com>
6Date: Thu Jul 22 09:54:13 2010 +1000
7
8 make_ext.pl populates @INC correctly, don't override it badly
9
10 PERL5LIB is populated by make_ext.pl with paths to the modules we need
11 to run, don't override this with "../../lib" since that may not have
12 been populated yet in a parallel build.
13
14diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL
15index 392b6fb..9e6d091 100644
16--- a/ext/POSIX/Makefile.PL
17+++ b/ext/POSIX/Makefile.PL
18@@ -1,7 +1,3 @@
19-# Explicitly avoid including '.' in @INC; autoloader gets confused since it
20-# can find POSIX.pm, but can't find autosplit.ix.
21-BEGIN { @INC = '../../lib';}
22-#
23 use ExtUtils::MakeMaker;
24 use ExtUtils::Constant 0.11 'WriteConstants';
25 use Config;