From patchwork Thu Oct 3 07:58:25 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 11172267 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1321515AB for ; Thu, 3 Oct 2019 07:59:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DB52821D81 for ; Thu, 3 Oct 2019 07:59:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=nifty.com header.i=@nifty.com header.b="jy193E1E" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728199AbfJCH7Q (ORCPT ); Thu, 3 Oct 2019 03:59:16 -0400 Received: from conuserg-11.nifty.com ([210.131.2.78]:59231 "EHLO conuserg-11.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728102AbfJCH7Q (ORCPT ); Thu, 3 Oct 2019 03:59:16 -0400 Received: from localhost.localdomain (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id x937wTkX007720; Thu, 3 Oct 2019 16:58:33 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com x937wTkX007720 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1570089514; bh=wNrxE/R+8BhtQOYFz0ZDJvyWIepl6P4okkyZb4m/C9k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jy193E1EhUdZpsYspNUk778eRK2ZGfe0ME/1rRNgBRezcpO6k88unUAKpy7f1GY7i GofB+lD9HSnLmCQqPbH+DSTWMl6v/f/p40yUxZCy9JcTpvQYUaojPr79q+0mzpnFlH UTzuaUtsmoiNLXt3SdW39VfHe5s4EbG+XxYALWvSsj07/GIuxq9/mSqaqtkCK96JRX 0M2qJH0kQyi46sU7ckLgvfjN482vKdWx6z/cDl9CnshicUug6PIlz/vt/f9g0uroyd d5OT0nZXC3nyXygQZPvhYRdUAvT3EAV/oRODmR0+Rr2vn9wHwe0ugZHgz3coWA0J0x lE4hmOcVz6PqA== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: Jessica Yu Cc: Matthias Maennich , Greg Kroah-Hartman , Shaun Ruffell , linux-kbuild@vger.kernel.org, Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH v2 5/6] nsdeps: fix hashbang of scripts/nsdeps Date: Thu, 3 Oct 2019 16:58:25 +0900 Message-Id: <20191003075826.7478-6-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20191003075826.7478-1-yamada.masahiro@socionext.com> References: <20191003075826.7478-1-yamada.masahiro@socionext.com> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org 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. Signed-off-by: Masahiro Yamada Reviewed-by: Matthias Maennich --- Changes in v2: None scripts/nsdeps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #