summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/files/native-perlinc.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/files/native-perlinc.patch')
-rw-r--r--meta/recipes-devtools/perl/files/native-perlinc.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/files/native-perlinc.patch b/meta/recipes-devtools/perl/files/native-perlinc.patch
new file mode 100644
index 0000000000..a2e1aefd41
--- /dev/null
+++ b/meta/recipes-devtools/perl/files/native-perlinc.patch
@@ -0,0 +1,27 @@
1Upstream-Status:Inappropriate [embedded specific]
2Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
3
4Index: perl-5.8.8/lib/ExtUtils/MM_Unix.pm
5===================================================================
6--- perl-5.12.3.orig/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm 2008-10-31 22:01:35.000000000 +0000
7+++ perl-5.12.3/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm 2008-10-31 22:01:35.000000000 +0000
8@@ -1597,6 +1597,19 @@
9 $self->{PERL_LIB} ||= $Config{privlibexp};
10 $self->{PERL_ARCHLIB} ||= $Config{archlibexp};
11 $self->{PERL_INC} = $self->catdir("$self->{PERL_ARCHLIB}","CORE"); # wild guess for now
12+ # Check for environment override so we'll find the headers in the correct place
13+ if (defined $ENV{PERL_LIB})
14+ {
15+ $self->{PERL_LIB} = $ENV{PERL_LIB};
16+ }
17+ if (defined $ENV{PERL_ARCHLIB})
18+ {
19+ $self->{PERL_ARCHLIB} = $ENV{PERL_ARCHLIB};
20+ }
21+ if (defined $ENV{PERL_INC})
22+ {
23+ $self->{PERL_INC} = $ENV{PERL_INC};
24+ }
25 my $perl_h;
26
27 if (not -f ($perl_h = $self->catfile($self->{PERL_INC},"perl.h"))