From 6f0b1cc9148270b0fd4a0f1b25c0a6dd0a3c6035 Mon Sep 17 00:00:00 2001 From: Rahix Date: Mon, 21 Oct 2019 19:53:39 +0200 Subject: [PATCH] gen-intr-lut: Switch to /usr/bin/env bash as interpreter The location of the `bash` binary can vary between systems. Switch to `/usr/bin/env bash` which is the recommended way to do it. Ref: PR #22 Signed-off-by: Rahix --- gen-intr-lut.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen-intr-lut.sh b/gen-intr-lut.sh index a45d29a..a31415e 100755 --- a/gen-intr-lut.sh +++ b/gen-intr-lut.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Generate a lookup table function for interrupts of all supported chips set -e -- 2.48.1