summaryrefslogtreecommitdiff
path: root/scripts/texi2pod.pl
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2017-04-26 15:16:04 +0200
committerMichael Tokarev <mjt@tls.msk.ru>2017-05-10 10:19:24 +0300
commitb7d5a9c2c672f6088bfa209c1338badbc51de3f3 (patch)
tree845217e61c99a978989d68ddff476568de399503 /scripts/texi2pod.pl
parent6f75023ab89708101dabc8f710bd0ed501311c8a (diff)
downloadqemu-b7d5a9c2c672f6088bfa209c1338badbc51de3f3.tar.gz
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>
Diffstat (limited to 'scripts/texi2pod.pl')
-rwxr-xr-xscripts/texi2pod.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/texi2pod.pl b/scripts/texi2pod.pl
index 6e8fec41a1..39ce584a32 100755
--- a/scripts/texi2pod.pl
+++ b/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.
@@ -22,6 +22,8 @@
# markup to Perl POD format. It's intended to be used to extract
# something suitable for a manpage from a Texinfo document.
+use warnings;
+
$output = 0;
$skipping = 0;
%sects = ();