diff options
author | Xidorn Quan <github@upsuper.org> | 2018-01-06 12:35:33 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-06 12:35:33 +1100 |
commit | 0ea428bab5e9bd8836168850f33e885c54d4c112 (patch) | |
tree | c185754e9268a85fa6551af8edaaba2d59e89eb7 /bootstrap | |
parent | adaa3a5d8b4e2834a8c2c79efcdd3c718236ba5a (diff) | |
download | crosstool-ng-0ea428bab5e9bd8836168850f33e885c54d4c112.tar.gz crosstool-ng-0ea428bab5e9bd8836168850f33e885c54d4c112.tar.bz2 crosstool-ng-0ea428bab5e9bd8836168850f33e885c54d4c112.zip |
Use /usr/bin/env to locate bash
On some systems (e.g. macOS), the bash provided by the system at `/bin/bash` is not new enough for the bootstrap script, while users may install a bash instance elsewhere. In that case, `/usr/bin/env` can get the bash in the current environment.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash if [ "${BASH_VERSINFO[0]}" -lt 4 ]; then echo "Your BASH shell version (${BASH_VERSION}) is too old." >&2 |