summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/files/0002-Constant-Fix-up-shebang.patch
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-06-21 08:30:30 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-24 10:36:28 +0100
commit08be264c8d132dc1d6f7e6ed0df57d269699edc8 (patch)
tree4fbcf2b485c27fafe1b35581f714d857bb953c26 /meta/recipes-devtools/perl/files/0002-Constant-Fix-up-shebang.patch
parent10ce84dd195cb1f2bfcc48dc07ed1019e30ec68e (diff)
downloadpoky-08be264c8d132dc1d6f7e6ed0df57d269699edc8.tar.gz
perl: Reproducible build fixes
Applies two patches that are required to improve the reproducibility of builds. (From OE-Core rev: 9297cabb0aca8212d3cc74f8d26e43abc02ded87) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/files/0002-Constant-Fix-up-shebang.patch')
-rw-r--r--meta/recipes-devtools/perl/files/0002-Constant-Fix-up-shebang.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/files/0002-Constant-Fix-up-shebang.patch b/meta/recipes-devtools/perl/files/0002-Constant-Fix-up-shebang.patch
new file mode 100644
index 0000000000..e70ff67f72
--- /dev/null
+++ b/meta/recipes-devtools/perl/files/0002-Constant-Fix-up-shebang.patch
@@ -0,0 +1,32 @@
1From 260ebd15e16cd86b9b58e5c5f3a496b3853ca46d Mon Sep 17 00:00:00 2001
2From: Joshua Watt <JPEWhacker@gmail.com>
3Date: Mon, 17 Jun 2019 10:47:23 -0500
4Subject: [PATCH 2/2] Constant: Fix up shebang
5
6The instructions indicate that the script should be explicitly passed to
7"perl -x", so automatically setting the #! to be ^X is unnecessary and
8makes the file non-reproducible when building because ^X could be the
9absolute path to miniperl.
10
11Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
12Upstream-status: Submitted [https://rt.cpan.org/Public/Bug/Display.html?id=129866]
13---
14 cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm
18index 14eb809714..d4d074e121 100644
19--- a/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm
20+++ b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm
21@@ -219,7 +219,7 @@ sub dogfood {
22 Regenerate these constant functions by feeding this entire source file to
23 perl -x
24
25-#!$^X -w
26+#!/usr/bin/env perl -x -w
27 use ExtUtils::Constant qw (constant_types C_constant XS_constant);
28
29 EOT
30--
312.21.0
32