summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.12.2/parallel_build_fix_1.patch
diff options
context:
space:
mode:
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;