mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
Update rdepends generator to account for new version specifiers
(v{version} instead of just {version}) and exclude a few more
external modules detected at runtime.
Adjust musl configuration to set custom LC_ALL handling
(musl doesn't follow glibc in that, see the last few comments here:
https://github.com/Perl/perl5/issues/22375 ).
Adjust ptest packaging to add a dummy Makefile for 'make perl
releases' test (otherwise the packaging specifically excludes makefiles).
(From OE-Core rev: 1c1cfae53564c836555ace926295cf88109b8c9f)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
From 9fec62b19a49d1451fd1120c5dc38baf59f73856 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
Date: Wed, 30 May 2007 09:33:32 +0000
|
|
Subject: [PATCH] perl: sync with OE
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
---
|
|
cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 13 +++++++++++++
|
|
1 file changed, 13 insertions(+)
|
|
|
|
diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
|
|
index 0828f52..b8abff4 100644
|
|
--- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
|
|
+++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
|
|
@@ -1862,6 +1862,19 @@ from the perl source tree.
|
|
$self->{PERL_LIB} ||= $Config{privlibexp};
|
|
$self->{PERL_ARCHLIB} ||= $Config{archlibexp};
|
|
$self->{PERL_INC} = $self->catdir("$self->{PERL_ARCHLIB}","CORE"); # wild guess for now
|
|
+ # Check for environment override so we'll find the headers in the correct place
|
|
+ if (defined $ENV{PERL_LIB})
|
|
+ {
|
|
+ $self->{PERL_LIB} = $ENV{PERL_LIB};
|
|
+ }
|
|
+ if (defined $ENV{PERL_ARCHLIB})
|
|
+ {
|
|
+ $self->{PERL_ARCHLIB} = $ENV{PERL_ARCHLIB};
|
|
+ }
|
|
+ if (defined $ENV{PERL_INC})
|
|
+ {
|
|
+ $self->{PERL_INC} = $ENV{PERL_INC};
|
|
+ }
|
|
my $perl_h;
|
|
|
|
if (not -f ($perl_h = $self->catfile($self->{PERL_INC},"perl.h"))
|