diff options
author | Alexey Neyman <stilor@att.net> | 2019-02-09 15:55:16 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2019-02-09 15:55:16 -0800 |
commit | 74a53fdf3eb383f09bdbf0d4adf8d2e26f838bd1 (patch) | |
tree | 59f7c27a3d83f8ede979e58407c0a40c2d75b10b /scripts/show-config.sh | |
parent | 09cb590847e5e26e5bb029c1a2693cfa7a1e99b6 (diff) | |
download | crosstool-ng-74a53fdf3eb383f09bdbf0d4adf8d2e26f838bd1.tar.gz crosstool-ng-74a53fdf3eb383f09bdbf0d4adf8d2e26f838bd1.tar.bz2 crosstool-ng-74a53fdf3eb383f09bdbf0d4adf8d2e26f838bd1.zip |
Use enhanced framework for 'ct-ng update-samples'
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/show-config.sh')
-rw-r--r-- | scripts/show-config.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/show-config.sh b/scripts/show-config.sh index 4bc82e1a..36ade9ec 100644 --- a/scripts/show-config.sh +++ b/scripts/show-config.sh @@ -72,6 +72,7 @@ dump_single_sample() esac printf "[%s" "${sample_type}" [ -f "${sample_top}/samples/${sample}/broken" ] && printf "B" || printf "." + [ "${CT_CONFIG_VERSION}" != "${CT_CONFIG_VERSION_CURRENT}" ] && printf "O" || printf "." [ "${CT_EXPERIMENTAL}" = "y" ] && printf "X" || printf "." printf "] %s\n" "${sample}" if [ ${verbose} -ne 0 ]; then |