mirror of https://github.com/YosysHQ/yosys.git
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 <h.zeller@acm.org>
This commit is contained in:
parent
fcd1be1422
commit
f09bf58b6e
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
help() {
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue