summaryrefslogtreecommitdiffstats
path: root/poky/meta/recipes-devtools/automake/automake/automake-replace-w-option-in-shebangs-with-modern-use-warnings.patch
blob: 96b5a3d6b2aa454949b8a01ad2f841fd2b835a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
From 41e06b7a354774913dcd2e32a35440e407843357 Mon Sep 17 00:00:00 2001
From: Serhii Popovych <spopovyc@cisco.com>
Date: Wed, 10 Feb 2016 17:07:32 +0000
Subject: [PATCH] perl: Replace -w option in shebangs with modern "use
 warnings" In some builds we might provide ac_cv_path_PERL as /usr/bin/env
 perl to use newer version of the perl from users PATH rather than older from
 standard system path.

However using /usr/bin/env perl -w from shebang line isn't
possible because it translates to something like
/usr/bin/env -w perl and env complains about illegal option.

To address this we can remove -w option from perl shebang
line and add "use warnings" statement.

Upstream-Status: Pending
Signed-off-by: Serhii Popovych <spopovyc@cisco.com>
---
 bin/aclocal.in     | 3 ++-
 bin/automake.in    | 3 ++-
 t/wrap/aclocal.in  | 3 ++-
 t/wrap/automake.in | 3 ++-
 4 files changed, 8 insertions(+), 4 deletions(-)

Index: automake-1.15.1/bin/aclocal.in
===================================================================
--- automake-1.15.1.orig/bin/aclocal.in
+++ automake-1.15.1/bin/aclocal.in
@@ -1,4 +1,4 @@
-#!@PERL@ -w
+#!@PERL@
 # -*- perl -*-
 # @configure_input@
 
@@ -33,6 +33,7 @@ BEGIN
 }
 
 use strict;
+use warnings;
 
 use Automake::Config;
 use Automake::General;
Index: automake-1.15.1/bin/automake.in
===================================================================
--- automake-1.15.1.orig/bin/automake.in
+++ automake-1.15.1/bin/automake.in
@@ -1,4 +1,4 @@
-#!@PERL@ -w
+#!@PERL@
 # -*- perl -*-
 # @configure_input@
 
@@ -28,6 +28,7 @@ eval 'case $# in 0) exec @PERL@ -S "$0";
 package Automake;
 
 use strict;
+use warnings;
 
 BEGIN
 {
Index: automake-1.15.1/t/wrap/aclocal.in
===================================================================
--- automake-1.15.1.orig/t/wrap/aclocal.in
+++ automake-1.15.1/t/wrap/aclocal.in
@@ -1,4 +1,4 @@
-#!@PERL@ -w
+#!@PERL@
 # @configure_input@
 
 # Copyright (C) 2012-2017 Free Software Foundation, Inc.
@@ -19,6 +19,7 @@
 BEGIN
 {
   use strict;
+  use warnings;
   @Aclocal::perl_libdirs = ('@abs_top_srcdir@/lib');
   unshift @Aclocal::perl_libdirs, '@abs_top_builddir@/lib'
     if '@srcdir@' ne '.';
Index: automake-1.15.1/t/wrap/automake.in
===================================================================
--- automake-1.15.1.orig/t/wrap/automake.in
+++ automake-1.15.1/t/wrap/automake.in
@@ -1,4 +1,4 @@
-#!@PERL@ -w
+#!@PERL@
 # @configure_input@
 
 # Copyright (C) 2012-2017 Free Software Foundation, Inc.
@@ -19,6 +19,7 @@
 BEGIN
 {
   use strict;
+  use warnings;
   @Automake::perl_libdirs = ('@abs_top_srcdir@/lib');
   unshift @Automake::perl_libdirs, '@abs_top_builddir@/lib'
     if '@srcdir@' ne '.';
OpenPOWER on IntegriCloud