From 8e3dcdcdfae9aacf1e4c152680c6a75408731965 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Forsman?= Date: Thu, 8 Jan 2015 21:31:19 +0100 Subject: [PATCH] package/mke2img: "/bin/bash" => "/usr/bin/env bash" shebang MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Thomas Petazzoni --- package/mke2img/mke2img | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/mke2img/mke2img b/package/mke2img/mke2img index 68da6ed5ee..5e2f62f005 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 -- 2.30.2