From f09bf58b6e29ed88bac6f72434321e56cebdad0e Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Sat, 24 Sep 2022 22:52:42 -0700 Subject: [PATCH] Fix hard-coded path to /bin/bash -> /usr/bin/env bash On Posix systems, the path /bin/bash is not guaranteed to exist and it is more portable to use /usr/bin/env instead. Fixing this for yosys-config with is the most important for a functioning installation. Signed-off-by: Henner Zeller --- misc/yosys-config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/yosys-config.in b/misc/yosys-config.in index a31ef38c2..f0f0f7552 100644 --- a/misc/yosys-config.in +++ b/misc/yosys-config.in @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash help() { {