diff options
author | Alexey Neyman <stilor@att.net> | 2017-08-18 23:55:24 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-08-18 23:55:24 -0700 |
commit | 2dfa203872a73fb7b6aa4ccd440864cba74a8777 (patch) | |
tree | 6fa28a5541997d42ae26d140856ace9e2e030926 /bootstrap | |
parent | be399f1046874daa40b15cbb7d74e715ae3714e6 (diff) | |
download | crosstool-ng-2dfa203872a73fb7b6aa4ccd440864cba74a8777.tar.gz crosstool-ng-2dfa203872a73fb7b6aa4ccd440864cba74a8777.tar.bz2 crosstool-ng-2dfa203872a73fb7b6aa4ccd440864cba74a8777.zip |
Require bash4 to run bootstrap
Fixes #797
(or, at least makes it fail gracefully with an advice)
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,11 @@ #!/bin/bash +if [ "${BASH_VERSINFO[0]}" -lt 4 ]; then + echo "Your BASH shell version (${BASH_VERSION}) is too old." >&2 + echo "Run bootstrap on a machine with BASH 4.x" >&2 + exit 1 +fi + ######################################## # Common meta-language implementation. Syntax: # |