From: Alyssa Ross Date: Fri, 19 Apr 2019 18:14:37 +0000 (+0000) Subject: get_reviewer.pl: improve portability X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e340d7beef9573facc53f3eeece640b2a14a15f5;p=mesa.git get_reviewer.pl: improve portability Not all package managers / users will install perl into /usr/bin, but /usr/bin/env /should/ always be present. Using /usr/bin/env means that we can't give the -w argument to Perl, so I added `use warnings' in the script. Reviewed-by: Rob Clark Reviewed-by: Eric Engestrom --- diff --git a/scripts/get_reviewer.pl b/scripts/get_reviewer.pl index 62deb922800..1677495ad6d 100755 --- a/scripts/get_reviewer.pl +++ b/scripts/get_reviewer.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # (c) 2007, Joe Perches # created from checkpatch.pl # @@ -14,6 +14,7 @@ # Licensed under the terms of the GNU GPL License version 2 use strict; +use warnings; my $P = $0; my $V = '0.26';