diff options
author | Alexey Neyman <stilor@att.net> | 2017-07-06 23:10:40 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-07-08 10:57:57 -0700 |
commit | c9b31439db79b325a96b39c3a19a6b9aed347979 (patch) | |
tree | 3380444ff0a62d9866827a8ff592aa4f81acc2fe /scripts/build/test_suite.sh | |
parent | 5ba5eaedd14f8b3715c57330dbfbd0cf43ef6aed (diff) | |
download | crosstool-ng-c9b31439db79b325a96b39c3a19a6b9aed347979.tar.gz crosstool-ng-c9b31439db79b325a96b39c3a19a6b9aed347979.tar.bz2 crosstool-ng-c9b31439db79b325a96b39c3a19a6b9aed347979.zip |
Some locations were missed while renaming kconfig symbols
... because there the symbols were constructer part by part.
Also, remove cc.sh and source $(CT_CC).sh directly - we only build
a single compiler at a time.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/test_suite.sh')
-rw-r--r-- | scripts/build/test_suite.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/build/test_suite.sh b/scripts/build/test_suite.sh index 8fabf42f..e963a994 100644 --- a/scripts/build/test_suite.sh +++ b/scripts/build/test_suite.sh @@ -7,8 +7,7 @@ CT_TEST_SUITE_FACILITY_LIST= for f in "${CT_LIB_DIR}/scripts/build/test_suite/"*.sh; do _f="$(basename "${f}" .sh)" - __f="CT_TEST_SUITE_${_f}" - __f=`echo ${__f} | tr "[:lower:]" "[:upper:]"` + __f="CT_TEST_SUITE_${_f^^}" if [ "${!__f}" = "y" ]; then CT_DoLog DEBUG "Enabling test suite '${_f}'" . "${f}" |