summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/files/native-perlinc.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-17 16:48:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-18 11:23:48 +0100
commit6896ca82f106c65e6c7d08986cfe86d2305c6afa (patch)
treea9af7a0bb0371d61c86376805798839e4ad6e052 /meta/recipes-devtools/perl/files/native-perlinc.patch
parent646b596c99119f40060d84a4bc6349f3a2a4e893 (diff)
downloadpoky-6896ca82f106c65e6c7d08986cfe86d2305c6afa.tar.gz
perl: Move perl-sanity -> perl
This was moved during the perl cleanup, it can/should be moved back now as its confusing too many people. (From OE-Core rev: ce69c21707aa19ab8a3f6c07dc5a560671ab53a4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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"))