diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-12-08 09:09:49 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-12-08 10:55:17 -0800 |
commit | 9f89e082c5bcb3c49013eeeae0a1ccbac1d91ba9 (patch) | |
tree | 115b1bca266d57cc7e2c0940fd4f14ca415a888d /scripts/build/cc.sh | |
parent | 514f1546d7fe83853c2c2020514e61a90cc26f95 (diff) | |
download | crosstool-ng-9f89e082c5bcb3c49013eeeae0a1ccbac1d91ba9.tar.gz crosstool-ng-9f89e082c5bcb3c49013eeeae0a1ccbac1d91ba9.tar.bz2 crosstool-ng-9f89e082c5bcb3c49013eeeae0a1ccbac1d91ba9.zip |
Whitespace: We don't use tabs in shell or kconfig files
We indent by multiples of 4.
This change cleans up whitespace in offending files.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'scripts/build/cc.sh')
-rw-r--r-- | scripts/build/cc.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/cc.sh b/scripts/build/cc.sh index 3c8aaefc..0db6b9ce 100644 --- a/scripts/build/cc.sh +++ b/scripts/build/cc.sh @@ -38,21 +38,21 @@ do_cc_core_pass_1() { # Core pass 2 the cc facilities do_cc_core_pass_2() { - for f in ${CT_CC_FACILITY_LIST}; do + for f in ${CT_CC_FACILITY_LIST}; do do_${f}_core_pass_2 done } # Build for build the cc facilities do_cc_for_build() { - for f in ${CT_CC_FACILITY_LIST}; do + for f in ${CT_CC_FACILITY_LIST}; do do_${f}_for_build done } # Build for host the cc facilities do_cc_for_host() { - for f in ${CT_CC_FACILITY_LIST}; do + for f in ${CT_CC_FACILITY_LIST}; do do_${f}_for_host done } |