diff options
author | Tom Jones <thj@freebsd.org> | 2024-01-18 14:51:44 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2024-01-19 12:30:01 +0000 |
commit | c3b416c49253bcf3223d2aec8c5ca06f0c78e6f9 (patch) | |
tree | 9502543d041b75820d2137cffe00c74978c7561c /build/external/Makefile | |
parent | ca75cd83b51895e94326117cf116c5d25e6c77da (diff) |
build: Explicitly use bash for shell scripts
VPP requires bash for all shell scripts. Align shebang lines in build
and test scripts to look up the location of bash rather than hard coding
'/bin/bash'.
Look up the location of bash for makefiles.
Type: improvement
Change-Id: I23b705d81d60389fa8af61c680cf0abd74f0ea24
Signed-off-by: Tom Jones <thj@freebsd.org>
Diffstat (limited to 'build/external/Makefile')
-rw-r--r-- | build/external/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/external/Makefile b/build/external/Makefile index 1e1f5da1d1f..a445d7b21ee 100644 --- a/build/external/Makefile +++ b/build/external/Makefile @@ -12,7 +12,7 @@ # limitations under the License. # Scripts require non-POSIX parts of bash -SHELL := /bin/bash +SHELL := $(shell which bash) DL_CACHE_DIR = $(HOME)/Downloads MAKE ?= make |