Browse Source

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.

Signed-off-by: Kamil Rytarowski <n54@gmx.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Kamil Rytarowski 8 years ago
parent
commit
b7d5a9c2c6

+ 2 - 1
scripts/checkpatch.pl

@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
 # (c) 2001, Dave Jones. (the file handling bit)
 # (c) 2001, Dave Jones. (the file handling bit)
 # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
 # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
 # (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
 # (c) 2007,2008, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite)
@@ -6,6 +6,7 @@
 # Licensed under the terms of the GNU GPL License version 2
 # Licensed under the terms of the GNU GPL License version 2
 
 
 use strict;
 use strict;
+use warnings;
 
 
 my $P = $0;
 my $P = $0;
 $P =~ s@.*/@@g;
 $P =~ s@.*/@@g;

+ 2 - 1
scripts/clean-header-guards.pl

@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
 #
 #
 # Clean up include guards in headers
 # Clean up include guards in headers
 #
 #
@@ -28,6 +28,7 @@
 #   "cc -E -DGUARD_H -c -P -", and fed the test program on stdin.
 #   "cc -E -DGUARD_H -c -P -", and fed the test program on stdin.
 
 
 use strict;
 use strict;
+use warnings;
 use Getopt::Std;
 use Getopt::Std;
 
 
 # Stuff we don't want to clean because we import it into our tree:
 # Stuff we don't want to clean because we import it into our tree:

+ 1 - 1
scripts/cleanup-trace-events.pl

@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 # Copyright (C) 2013 Red Hat, Inc.
 # Copyright (C) 2013 Red Hat, Inc.
 #
 #
 # Authors:
 # Authors:

+ 3 - 1
scripts/disas-objdump.pl

@@ -1,4 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
+
+use warnings;
 
 
 use File::Temp qw/ tempfile /;
 use File::Temp qw/ tempfile /;
 use Getopt::Long;
 use Getopt::Long;

+ 2 - 1
scripts/get_maintainer.pl

@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
 # (c) 2007, Joe Perches <joe@perches.com>
 # (c) 2007, Joe Perches <joe@perches.com>
 #           created from checkpatch.pl
 #           created from checkpatch.pl
 #
 #
@@ -11,6 +11,7 @@
 # Licensed under the terms of the GNU GPL License version 2
 # Licensed under the terms of the GNU GPL License version 2
 
 
 use strict;
 use strict;
+use warnings;
 
 
 my $P = $0;
 my $P = $0;
 my $V = '0.26';
 my $V = '0.26';

+ 1 - 1
scripts/shaderinclude.pl

@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 use strict;
 use strict;
 use warnings;
 use warnings;
 
 

+ 1 - 1
scripts/switch-timer-api

@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 
 
 use strict;
 use strict;
 use warnings;
 use warnings;

+ 3 - 1
scripts/texi2pod.pl

@@ -1,4 +1,4 @@
-#! /usr/bin/perl -w
+#! /usr/bin/env perl
 
 
 #   Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
 #   Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
 
 
@@ -22,6 +22,8 @@
 # markup to Perl POD format.  It's intended to be used to extract
 # markup to Perl POD format.  It's intended to be used to extract
 # something suitable for a manpage from a Texinfo document.
 # something suitable for a manpage from a Texinfo document.
 
 
+use warnings;
+
 $output = 0;
 $output = 0;
 $skipping = 0;
 $skipping = 0;
 %sects = ();
 %sects = ();