diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-10-03 16:58:25 +0900 |
---|---|---|
committer | Jessica Yu <jeyu@kernel.org> | 2019-10-07 18:25:21 +0200 |
commit | 40997fb8799dab048bd4fa538f62a11ed4224e2a (patch) | |
tree | 801402c3ecc9f61af66ac4cf41d702e6a88c32b2 | |
parent | d85103ac78a6d8573b21348b36f4cca2e1839a31 (diff) |
nsdeps: fix hashbang of scripts/nsdeps
This script does not use bash-extension. I am guessing this hashbang
was copied from scripts/coccicheck, which really uses bash-extension.
/bin/sh is enough for this script.
Reviewed-by: Matthias Maennich <maennich@google.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
-rw-r--r-- | scripts/nsdeps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nsdeps b/scripts/nsdeps index ac2b6031dd13..964b7fb8c546 100644 --- a/scripts/nsdeps +++ b/scripts/nsdeps @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # SPDX-License-Identifier: GPL-2.0 # Linux kernel symbol namespace import generator # |