diff options
author | Martin Roth <martinr@coreboot.org> | 2018-08-27 07:10:03 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-08-30 14:48:09 +0000 |
commit | b69ae97adafa301ef8e2186be0cb288194984182 (patch) | |
tree | c99eb744248b86167f510bafd81985d3216a860c /util/abuild | |
parent | 6635b3d9a1d81aeebb215e28cdf19be858dad3c3 (diff) |
util/abuild: Use env to find bash
FreeBSD doesn't have bash in /bin, so use env to find it. This is
already done in many other scripts that are used in the actual build
path.
Change-Id: If6fb6bc3c55835e2144599fea1cdb2f7abefb0fc
Signed-off-by: Martin Roth <martinr@coreboot.org>
Reviewed-on: https://review.coreboot.org/28364
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Alex Thiessen <alex.thiessen.de+coreboot@gmail.com>
Diffstat (limited to 'util/abuild')
-rwxr-xr-x | util/abuild/abuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index 3831d59781..3228d098c1 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # coreboot autobuild # |