From c2e494136731571a78b2bdd7ca9dc536a8b5aecd Mon Sep 17 00:00:00 2001 From: Yegor Timoshenko Date: Sun, 7 Oct 2018 01:58:27 +0000 Subject: treewide: use /usr/bin/env where appropriate Some Unix systems (GuixSD, NixOS) do not install programs like Bash and Python to /usr/bin, and /usr/bin/env has to be used to locate these instead. Change-Id: I7546bcb881c532adc984577ecb0ee2ec4f2efe00 Signed-off-by: Yegor Timoshenko Reviewed-on: https://review.coreboot.org/28953 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- util/scripts/get_maintainer.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'util/scripts/get_maintainer.pl') diff --git a/util/scripts/get_maintainer.pl b/util/scripts/get_maintainer.pl index 4f34a4e6fb..c24a6d4d69 100755 --- a/util/scripts/get_maintainer.pl +++ b/util/scripts/get_maintainer.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # (c) 2007, Joe Perches # created from checkpatch.pl # @@ -11,6 +11,7 @@ # Licensed under the terms of the GNU GPL License version 2 use strict; +use warnings; my $P = $0; my $V = '0.26'; -- cgit v1.2.3