From patchwork Thu Jan 8 20:31:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Bj=C3=B8rn_Forsman?= X-Patchwork-Id: 426852 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 17B24140140 for ; Fri, 9 Jan 2015 07:31:28 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 59970275BC; Thu, 8 Jan 2015 20:31:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NFHEuBxfsBuB; Thu, 8 Jan 2015 20:31:25 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 64E1C26A38; Thu, 8 Jan 2015 20:31:25 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id DB5971C2279 for ; Thu, 8 Jan 2015 20:31:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D7D7F8A0BE for ; Thu, 8 Jan 2015 20:31:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FiB1XsFe7WVK for ; Thu, 8 Jan 2015 20:31:24 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 2B8E58A08E for ; Thu, 8 Jan 2015 20:31:24 +0000 (UTC) Received: by mail-we0-f182.google.com with SMTP id w62so4532780wes.13 for ; Thu, 08 Jan 2015 12:31:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:mime-version:content-type :content-transfer-encoding; bh=FgszYnybe0J+Sm6O/qIuXN03E3embWGHKdMj5nf1aR4=; b=o/b+T808LzOfaFgkvUUXUWRX4Squxtt3lquHYI7IPhQEnEjSB0ejDWIniUWzeb9/X0 ad8A80upRhDNIt1vYBXe4G6ilV0OwEhHSXZM6vQ4dH3NdU+3izuS7d+hIjRSxAPODjP+ Db/FUv+6ySbE5odrL5ehpii6QgY5BNZyG0L4oKQm3ENjXTyyIjQqbE/z31fTEts0sB1H ooSQBGUjn6sdN5sM5iWMdvv3V/htNU10TSZ75FwQS7qZNaZZuQzUmTdDA+vOqrKu6pjj VMxdaBoZIpPtMKCymVg711r2//dY8PrR8S5uSXZkpuSt1rme7WcCZ9GBkwIiwcWNpRu8 AO0g== X-Received: by 10.194.184.140 with SMTP id eu12mr23017457wjc.25.1420749082898; Thu, 08 Jan 2015 12:31:22 -0800 (PST) Received: from localhost (cm-84.208.241.218.getinternet.no. [84.208.241.218]) by mx.google.com with ESMTPSA id f7sm7913294wiz.13.2015.01.08.12.31.21 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 08 Jan 2015 12:31:22 -0800 (PST) From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= To: buildroot@buildroot.org Date: Thu, 8 Jan 2015 21:31:19 +0100 Message-Id: <1420749079-29099-1-git-send-email-bjorn.forsman@gmail.com> X-Mailer: git-send-email 2.1.3 MIME-Version: 1.0 Subject: [Buildroot] [PATCH 1/1] package/mke2img: "/bin/bash" => "/usr/bin/env bash" shebang X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" For portability. All other Buildroot scripts (i.e. scripts that run on host) already use the "/usr/bin/env bash" shebang. This change is needed for NixOS, which lacks a global /bin/bash. Signed-off-by: Bjørn Forsman --- package/mke2img/mke2img | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/mke2img/mke2img b/package/mke2img/mke2img index 68da6ed..5e2f62f 100755 --- a/package/mke2img/mke2img +++ b/package/mke2img/mke2img @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Buildroot wrapper to the collection of ext2/3/4 filesystem tools: # - genext2fs, to generate ext2 filesystem images