aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2017-05-07 17:25:26 -0400
committerMasahiro Yamada <yamada.masahiro@socionext.com>2017-05-13 22:20:44 -0400
commitcb77f0d623ff33a7899cb945f4f5a4825fbb2ea1 (patch)
tree4de662eee07903e11e20750f15e134a34928d5b6
parent2ea659a9ef488125eb46da6eb571de5eae5c43f6 (diff)
scripts: Switch to more portable Perl shebang
The default NetBSD package manager is pkgsrc and it installs Perl along other third party programs under custom and configurable prefix. The default prefix for binary prebuilt packages is /usr/pkg, and the Perl executable lands in /usr/pkg/bin/perl. This change switches "/usr/bin/perl" to "/usr/bin/env perl" as it's the most portable solution that should work for almost everybody. Perl's executable is detected automatically. This change switches -w option passed to the executable with more modern "use warnings;" approach. There is no functional change to the default behavior. While there, drop "require 5" from scripts/namespace.pl (Perl from 1994?). Signed-off-by: Kamil Rytarowski <n54@gmx.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rwxr-xr-xscripts/bootgraph.pl2
-rwxr-xr-xscripts/checkincludes.pl2
-rwxr-xr-xscripts/checkpatch.pl3
-rwxr-xr-xscripts/checkstack.pl2
-rwxr-xr-xscripts/checkversion.pl2
-rwxr-xr-xscripts/cleanfile3
-rwxr-xr-xscripts/cleanpatch3
-rwxr-xr-xscripts/dtc/dt_to_config2
-rwxr-xr-xscripts/export_report.pl3
-rwxr-xr-xscripts/extract-module-sig.pl3
-rwxr-xr-xscripts/extract-sys-certs.pl3
-rwxr-xr-xscripts/extract_xc3028.pl2
-rwxr-xr-xscripts/get_dvb_firmware2
-rwxr-xr-xscripts/get_maintainer.pl3
-rwxr-xr-xscripts/headerdep.pl2
-rwxr-xr-xscripts/headers_check.pl3
-rwxr-xr-xscripts/kconfig/streamline_config.pl3
-rwxr-xr-xscripts/kernel-doc3
-rwxr-xr-xscripts/kernel-doc-xml-ref3
-rwxr-xr-xscripts/markup_oops.pl2
-rwxr-xr-xscripts/namespace.pl4
-rwxr-xr-xscripts/profile2linkerlist.pl2
-rwxr-xr-xscripts/recordmcount.pl3
-rwxr-xr-xscripts/stackdelta2
24 files changed, 37 insertions, 25 deletions
diff --git a/scripts/bootgraph.pl b/scripts/bootgraph.pl
index 9ca667bcaee9..594c55541b16 100755
--- a/scripts/bootgraph.pl
+++ b/scripts/bootgraph.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl 1#!/usr/bin/env perl
2 2
3# Copyright 2008, Intel Corporation 3# Copyright 2008, Intel Corporation
4# 4#
diff --git a/scripts/checkincludes.pl b/scripts/checkincludes.pl
index 381c018a4612..ce9edefd6e0b 100755
--- a/scripts/checkincludes.pl
+++ b/scripts/checkincludes.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl 1#!/usr/bin/env perl
2# 2#
3# checkincludes: find/remove files included more than once 3# checkincludes: find/remove files included more than once
4# 4#
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 4b9569fa931b..3465a7c5a154 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl -w 1#!/usr/bin/env perl
2# (c) 2001, Dave Jones. (the file handling bit) 2# (c) 2001, Dave Jones. (the file handling bit)
3# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit) 3# (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
4# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite) 4# (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
@@ -6,6 +6,7 @@
6# Licensed under the terms of the GNU GPL License version 2 6# Licensed under the terms of the GNU GPL License version 2
7 7
8use strict; 8use strict;
9use warnings;
9use POSIX; 10use POSIX;
10use File::Basename; 11use File::Basename;
11use Cwd 'abs_path'; 12use Cwd 'abs_path';
diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl
index 9d37aa4faf5c..7f4c41717e26 100755
--- a/scripts/checkstack.pl
+++ b/scripts/checkstack.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl 1#!/usr/bin/env perl
2 2
3# Check the stack usage of functions 3# Check the stack usage of functions
4# 4#
diff --git a/scripts/checkversion.pl b/scripts/checkversion.pl
index 5e490a8ceca5..8b4f205234b5 100755
--- a/scripts/checkversion.pl
+++ b/scripts/checkversion.pl
@@ -1,4 +1,4 @@
1#! /usr/bin/perl 1#! /usr/bin/env perl
2# 2#
3# checkversion find uses of LINUX_VERSION_CODE or KERNEL_VERSION 3# checkversion find uses of LINUX_VERSION_CODE or KERNEL_VERSION
4# without including <linux/version.h>, or cases of 4# without including <linux/version.h>, or cases of
diff --git a/scripts/cleanfile b/scripts/cleanfile
index cefd29e52298..72e3755327ae 100755
--- a/scripts/cleanfile
+++ b/scripts/cleanfile
@@ -1,9 +1,10 @@
1#!/usr/bin/perl -w 1#!/usr/bin/env perl
2# 2#
3# Clean a text file -- or directory of text files -- of stealth whitespace. 3# Clean a text file -- or directory of text files -- of stealth whitespace.
4# WARNING: this can be a highly destructive operation. Use with caution. 4# WARNING: this can be a highly destructive operation. Use with caution.
5# 5#
6 6
7use warnings;
7use bytes; 8use bytes;
8use File::Basename; 9use File::Basename;
9 10
diff --git a/scripts/cleanpatch b/scripts/cleanpatch
index 9680d03ad2b8..3e5a2303dc0e 100755
--- a/scripts/cleanpatch
+++ b/scripts/cleanpatch
@@ -1,9 +1,10 @@
1#!/usr/bin/perl -w 1#!/usr/bin/env perl
2# 2#
3# Clean a patch file -- or directory of patch files -- of stealth whitespace. 3# Clean a patch file -- or directory of patch files -- of stealth whitespace.
4# WARNING: this can be a highly destructive operation. Use with caution. 4# WARNING: this can be a highly destructive operation. Use with caution.
5# 5#
6 6
7use warnings;
7use bytes; 8use bytes;
8use File::Basename; 9use File::Basename;
9 10
diff --git a/scripts/dtc/dt_to_config b/scripts/dtc/dt_to_config
index 9a248b505c58..5dfd1bff351f 100755
--- a/scripts/dtc/dt_to_config
+++ b/scripts/dtc/dt_to_config
@@ -1,4 +1,4 @@
1#!/usr/bin/perl 1#!/usr/bin/env perl
2 2
3# Copyright 2016 by Frank Rowand 3# Copyright 2016 by Frank Rowand
4# Copyright 2016 by Gaurav Minocha 4# Copyright 2016 by Gaurav Minocha
diff --git a/scripts/export_report.pl b/scripts/export_report.pl
index 8f79b701de87..68ff426b347c 100755
--- a/scripts/export_report.pl
+++ b/scripts/export_report.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl -w 1#!/usr/bin/env perl
2# 2#
3# (C) Copyright IBM Corporation 2006. 3# (C) Copyright IBM Corporation 2006.
4# Released under GPL v2. 4# Released under GPL v2.
@@ -7,6 +7,7 @@
7# Usage: export_report.pl -k Module.symvers [-o report_file ] -f *.mod.c 7# Usage: export_report.pl -k Module.symvers [-o report_file ] -f *.mod.c
8# 8#
9 9
10use warnings;
10use Getopt::Std; 11use Getopt::Std;
11use strict; 12use strict;
12 13
diff --git a/scripts/extract-module-sig.pl b/scripts/extract-module-sig.pl
index faac6f2e377f..0f161ea41261 100755
--- a/scripts/extract-module-sig.pl
+++ b/scripts/extract-module-sig.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl -w 1#!/usr/bin/env perl
2# 2#
3# extract-mod-sig <part> <module-file> 3# extract-mod-sig <part> <module-file>
4# 4#
@@ -12,6 +12,7 @@
12# -k: Just the key ID 12# -k: Just the key ID
13# -s: Just the crypto signature or PKCS#7 message 13# -s: Just the crypto signature or PKCS#7 message
14# 14#
15use warnings;
15use strict; 16use strict;
16 17
17die "Format: $0 -[0adnks] module-file >out\n" 18die "Format: $0 -[0adnks] module-file >out\n"
diff --git a/scripts/extract-sys-certs.pl b/scripts/extract-sys-certs.pl
index 8227ca10a494..2aa873b944e0 100755
--- a/scripts/extract-sys-certs.pl
+++ b/scripts/extract-sys-certs.pl
@@ -1,5 +1,6 @@
1#!/usr/bin/perl -w 1#!/usr/bin/env perl
2# 2#
3use warnings;
3use strict; 4use strict;
4use Math::BigInt; 5use Math::BigInt;
5use Fcntl "SEEK_SET"; 6use Fcntl "SEEK_SET";
diff --git a/scripts/extract_xc3028.pl b/scripts/extract_xc3028.pl
index 47877deae6d7..61d9b256c658 100755
--- a/scripts/extract_xc3028.pl
+++ b/scripts/extract_xc3028.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl 1#!/usr/bin/env perl
2 2
3# Copyright (c) Mauro Carvalho Chehab <mchehab@infradead.org> 3# Copyright (c) Mauro Carvalho Chehab <mchehab@infradead.org>
4# Released under GPLv2 4# Released under GPLv2
diff --git a/scripts/get_dvb_firmware b/scripts/get_dvb_firmware
index 1a0a04125f71..f3f230225aba 100755
--- a/scripts/get_dvb_firmware
+++ b/scripts/get_dvb_firmware
@@ -1,4 +1,4 @@
1#!/usr/bin/perl 1#!/usr/bin/env perl
2# DVB firmware extractor 2# DVB firmware extractor
3# 3#
4# (c) 2004 Andrew de Quincey 4# (c) 2004 Andrew de Quincey
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 633f2dd3de27..3bd5f4f30235 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -1,4 +1,4 @@
1#!/usr/bin/perl -w 1#!/usr/bin/env perl
2# (c) 2007, Joe Perches <joe@perches.com> 2# (c) 2007, Joe Perches <joe@perches.com>
3# created from checkpatch.pl 3# created from checkpatch.pl
4# 4#
@@ -10,6 +10,7 @@
10# 10#
11# Licensed under the terms of the GNU GPL License version 2 11# Licensed under the terms of the GNU GPL License version 2
12 12
13use warnings;
13use strict; 14use strict;
14 15
15my $P = $0;