diff options
author | Finn Behrens <me@kloenk.de> | 2020-11-23 17:15:33 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-05-22 12:38:30 +0300 |
commit | 2cbb484788fedff019fd350f2612183f7377fa95 (patch) | |
tree | 475f76b907c235e7935c2660070145d22b87e111 /scripts/get_abi.pl | |
parent | 2524958069684a54dfdc8f4a10dcdeb0fdc89b08 (diff) | |
download | linux-2cbb484788fedff019fd350f2612183f7377fa95.tar.xz |
tweewide: Fix most Shebang lines
commit c25ce589dca10d64dde139ae093abc258a32869c upstream.
Change every shebang which does not need an argument to use /usr/bin/env.
This is needed as not every distro has everything under /usr/bin,
sometimes not even bash.
Signed-off-by: Finn Behrens <me@kloenk.de>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts/get_abi.pl')
-rwxr-xr-x | scripts/get_abi.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/get_abi.pl b/scripts/get_abi.pl index c738cb795514..ba87b230fe0a 100755 --- a/scripts/get_abi.pl +++ b/scripts/get_abi.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # SPDX-License-Identifier: GPL-2.0 use strict; |