[PATCH v2] scripts: use env to invoke bash
Xiang W
wxjstz at 126.com
Fri Dec 9 01:11:34 PST 2022
在 2022-12-09星期五的 11:43 +0530,Himanshu Chauhan写道:
> Not all systems have bash at a fixed location like /bin/bash.
> FreeBSD, for example, would typically have it at /usr/local/bin/bash.
> When building OpenSBI on freebsd system, the build breaks.
>
> Its advisable to use: #!/usr/bin/env bash
>
> [v2] In this version:
> * Change remaining two scripts to use env
>
> Signed-off-by: Himanshu Chauhan <hchauhan at ventanamicro.com>
LGTM
Reviewed-by: Xiang W <wxjstz at 126.com>
> ---
> scripts/carray.sh | 2 +-
> scripts/create-binary-archive.sh | 2 +-
> scripts/d2c.sh | 2 +-
> 3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/scripts/carray.sh b/scripts/carray.sh
> index 0c52bd6..13f9d36 100755
> --- a/scripts/carray.sh
> +++ b/scripts/carray.sh
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/usr/bin/env bash
>
> function usage()
> {
> diff --git a/scripts/create-binary-archive.sh b/scripts/create-binary-archive.sh
> index 261a45a..63781e1 100755
> --- a/scripts/create-binary-archive.sh
> +++ b/scripts/create-binary-archive.sh
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/usr/bin/env bash
>
> function usage()
> {
> diff --git a/scripts/d2c.sh b/scripts/d2c.sh
> index 33a3ccf..c411fcd 100755
> --- a/scripts/d2c.sh
> +++ b/scripts/d2c.sh
> @@ -1,4 +1,4 @@
> -#!/bin/bash
> +#!/usr/bin/env bash
>
> function usage()
> {
> --
> 2.38.1
>
>
More information about the opensbi
mailing list