summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl')
-rw-r--r--meta/recipes-devtools/perl/files/determinism.patch6
-rw-r--r--meta/recipes-devtools/perl/perl_5.38.2.bb2
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/perl/files/determinism.patch b/meta/recipes-devtools/perl/files/determinism.patch
index aa85ccef10..f2b1111552 100644
--- a/meta/recipes-devtools/perl/files/determinism.patch
+++ b/meta/recipes-devtools/perl/files/determinism.patch
@@ -8,9 +8,9 @@ b) Sort the order of the module lists from configure_mods.sh since otherwise
8 the result isn't the same leading to makefile differences. 8 the result isn't the same leading to makefile differences.
9 Reported upstream: https://github.com/arsv/perl-cross/issues/88 9 Reported upstream: https://github.com/arsv/perl-cross/issues/88
10 10
11c) Sort the Encode::Byte byte_t.fnm file output (and the makefile depends whilst 11c) Sort the Encode::Byte byte_t.fnm file output (and the makefile depends whilst
12 there for good measure) 12 there for good measure)
13 This needs to go to upstream perl (not done) 13 Submitted to upstream perl: https://github.com/dankogai/p5-encode/pull/179
14 14
15d) Use bash for perl-cross configure since otherwise trnl gets set to "\n" with bash 15d) Use bash for perl-cross configure since otherwise trnl gets set to "\n" with bash
16 and "" with dash 16 and "" with dash
@@ -18,7 +18,7 @@ d) Use bash for perl-cross configure since otherwise trnl gets set to "\n" with
18 18
19RP 2020/2/7 19RP 2020/2/7
20 20
21Upstream-Status: Pending [75% submitted] 21Upstream-Status: Submitted [see links above]
22Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org 22Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org
23 23
24Index: perl-5.30.1/cpan/Encode/Byte/Makefile.PL 24Index: perl-5.30.1/cpan/Encode/Byte/Makefile.PL
diff --git a/meta/recipes-devtools/perl/perl_5.38.2.bb b/meta/recipes-devtools/perl/perl_5.38.2.bb
index b6c9cda7ae..63909c242d 100644
--- a/meta/recipes-devtools/perl/perl_5.38.2.bb
+++ b/meta/recipes-devtools/perl/perl_5.38.2.bb
@@ -331,7 +331,7 @@ python split_perl_packages () {
331 d.setVar(d.expand("RDEPENDS:${PN}-modules"), ' '.join(packages)) 331 d.setVar(d.expand("RDEPENDS:${PN}-modules"), ' '.join(packages))
332 332
333 # Read the pre-generated dependency file, and use it to set module dependecies 333 # Read the pre-generated dependency file, and use it to set module dependecies
334 for line in open(d.expand("${WORKDIR}") + '/perl-rdepends.txt').readlines(): 334 for line in open(d.getVar("UNPACKDIR") + '/perl-rdepends.txt').readlines():
335 splitline = line.split() 335 splitline = line.split()
336 # Filter empty lines and comments 336 # Filter empty lines and comments
337 if len(splitline) == 0 or splitline[0].startswith("#"): 337 if len(splitline) == 0 or splitline[0].startswith("#"):