diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/perl/files/0001-PATCH-perl-134117-Close-DATA-in-loc_tools.pl.patch | 30 | ||||
-rw-r--r-- | meta/recipes-devtools/perl/perl_5.30.1.bb | 2 |
2 files changed, 31 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/files/0001-PATCH-perl-134117-Close-DATA-in-loc_tools.pl.patch b/meta/recipes-devtools/perl/files/0001-PATCH-perl-134117-Close-DATA-in-loc_tools.pl.patch new file mode 100644 index 0000000000..79cae0d6fa --- /dev/null +++ b/meta/recipes-devtools/perl/files/0001-PATCH-perl-134117-Close-DATA-in-loc_tools.pl.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From a04a75f20f03aa08ce8118b3b0b3f93eb3e997c5 Mon Sep 17 00:00:00 2001 | ||
2 | From: Richard Leach <rich+perl@hyphen-dash-hyphen.info> | ||
3 | Date: Sun, 19 May 2019 20:16:41 +0000 | ||
4 | Subject: [PATCH] PATCH: [perl #134117] Close DATA in loc_tools.pl | ||
5 | |||
6 | This prevents unexpected text and fixes test lib/warnings.t | ||
7 | |||
8 | Upstream-Status: Backport [a04a75f20f03aa08ce8118b3b0b3f93eb3e997c5] | ||
9 | |||
10 | Signed-off-by: Matthew Zeng <matthew.zeng@windriver.com> | ||
11 | |||
12 | --- | ||
13 | t/loc_tools.pl | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/t/loc_tools.pl b/t/loc_tools.pl | ||
17 | index c76e29388a..beebd98d88 100644 | ||
18 | --- a/t/loc_tools.pl | ||
19 | +++ b/t/loc_tools.pl | ||
20 | @@ -421,7 +421,7 @@ sub find_locales ($;$) { | ||
21 | } | ||
22 | |||
23 | # The rest of the locales are in this file. | ||
24 | - push @Data, <DATA>; | ||
25 | + push @Data, <DATA>; close DATA; | ||
26 | |||
27 | foreach my $line (@Data) { | ||
28 | my ($locale_name, $language_codes, $country_codes, $encodings) = | ||
29 | -- | ||
30 | 2.25.0 | ||
diff --git a/meta/recipes-devtools/perl/perl_5.30.1.bb b/meta/recipes-devtools/perl/perl_5.30.1.bb index 4869012b1a..9d747aa5b4 100644 --- a/meta/recipes-devtools/perl/perl_5.30.1.bb +++ b/meta/recipes-devtools/perl/perl_5.30.1.bb | |||
@@ -21,6 +21,7 @@ SRC_URI = "https://www.cpan.org/src/5.0/perl-${PV}.tar.gz;name=perl \ | |||
21 | file://0001-enc2xs-Add-environment-variable-to-suppress-comments.patch \ | 21 | file://0001-enc2xs-Add-environment-variable-to-suppress-comments.patch \ |
22 | file://0002-Constant-Fix-up-shebang.patch \ | 22 | file://0002-Constant-Fix-up-shebang.patch \ |
23 | file://0001-tests-adjust-to-correctly-exclude-unbuilt-extensions.patch \ | 23 | file://0001-tests-adjust-to-correctly-exclude-unbuilt-extensions.patch \ |
24 | file://0001-PATCH-perl-134117-Close-DATA-in-loc_tools.pl.patch \ | ||
24 | file://determinism.patch \ | 25 | file://determinism.patch \ |
25 | file://racefix.patch \ | 26 | file://racefix.patch \ |
26 | " | 27 | " |
@@ -388,4 +389,3 @@ EOF | |||
388 | chmod 0755 ${SYSROOT_DESTDIR}${bindir}/nativeperl | 389 | chmod 0755 ${SYSROOT_DESTDIR}${bindir}/nativeperl |
389 | cat ${SYSROOT_DESTDIR}${bindir}/nativeperl | 390 | cat ${SYSROOT_DESTDIR}${bindir}/nativeperl |
390 | } | 391 | } |
391 | |||