diff options
| author | Finn Behrens <me@kloenk.de> | 2020-11-23 15:15:33 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-06-03 08:23:27 +0200 |
| commit | 2d1f7c92e2e72c64b333c6ce48f17c5be1a11dd4 (patch) | |
| tree | 1f159983b8c323c86b8de19996c233057a0ace9b /scripts/config | |
| parent | 13dd6bb4cfdd6240dc032ce4664b5938a4448487 (diff) | |
| download | linux-2d1f7c92e2e72c64b333c6ce48f17c5be1a11dd4.tar.gz linux-2d1f7c92e2e72c64b333c6ce48f17c5be1a11dd4.tar.bz2 linux-2d1f7c92e2e72c64b333c6ce48f17c5be1a11dd4.zip | |
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>
[nicolas@fjasle.eu: update contexts for v4.9, adapt for old scripts]
Signed-off-by: Nicolas Schier <nicolas@fjasle.eu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts/config')
| -rwxr-xr-x | scripts/config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config b/scripts/config index 73de17d39698..06ac9882e1de 100755 --- a/scripts/config +++ b/scripts/config @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Manipulate options in a .config file from the command line myname=${0##*/} |
