diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2022-06-26 18:01:27 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2022-06-27 12:13:58 -0700 |
commit | e51a7ca18cf06ebdf335821135db526a1c082db9 (patch) | |
tree | e63ef88072913e4ad073144bfc19ba77f2257419 /bootstrap | |
parent | 883ecbebb642c88a11a78e8f2e8c30ad72813b9a (diff) | |
download | crosstool-ng-e51a7ca18cf06ebdf335821135db526a1c082db9.tar.gz crosstool-ng-e51a7ca18cf06ebdf335821135db526a1c082db9.tar.bz2 crosstool-ng-e51a7ca18cf06ebdf335821135db526a1c082db9.zip |
Fix mixed indent in bootstrap
Tabs or spaces... I believe the policy on ct-ng is spaces for shell
scripts. So update bootstrap to stick to 4 space indent.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -1,4 +1,5 @@ #!/usr/bin/env bash +# vi: ts=4:sw=4:et if [ "${BASH_VERSINFO[0]}" -lt 4 ]; then echo "Your BASH shell version (${BASH_VERSION}) is too old." >&2 @@ -470,15 +471,15 @@ sort_versions() #debug "${v} vs ${vx} :: `cmp_versions ${v} ${vx}`" case `cmp_versions ${v} ${vx}` in 1) - next_remains+=" ${vx}" - ;; + next_remains+=" ${vx}" + ;; 0) - ;; + ;; -1) - found=no - #debug "Bad: earlier than ${vx}" - break - ;; + found=no + #debug "Bad: earlier than ${vx}" + break + ;; esac done if [ "${found}" = "yes" ]; then @@ -823,7 +824,7 @@ msg "*** Gathering the list of data files to install" continue fi echo " \\" - echo -n " ${f}" + echo -en "\t${f}" seen_files[${f}]=y done } > verbatim-data.mk |