diff options
author | Alexey Neyman <stilor@att.net> | 2017-02-15 22:45:07 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-02-15 22:45:07 -0800 |
commit | 4caece01287dc8353ff1d1ac890e27377cddd1aa (patch) | |
tree | 18cfead5326616ebca354907556bd14580369c93 /config/libc | |
parent | 2d1b469f888858180ee95d43a0b89981b38cf93e (diff) | |
download | crosstool-ng-4caece01287dc8353ff1d1ac890e27377cddd1aa.tar.gz crosstool-ng-4caece01287dc8353ff1d1ac890e27377cddd1aa.tar.bz2 crosstool-ng-4caece01287dc8353ff1d1ac890e27377cddd1aa.zip |
Refine previous fix to uClibc verbosity setting
The V={1,2} have opposite meaning in uClibc and uClibc-ng, reflect that.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/libc')
-rw-r--r-- | config/libc/uClibc.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/config/libc/uClibc.in b/config/libc/uClibc.in index e830662c..9d5e8fda 100644 --- a/config/libc/uClibc.in +++ b/config/libc/uClibc.in @@ -151,22 +151,28 @@ config LIBC_UCLIBC_VERBOSITY_0 config LIBC_UCLIBC_VERBOSITY_1 bool - prompt "Very verbose build" + prompt "Brief build (show defines, ld flags)" help Print simplified command lines. config LIBC_UCLIBC_VERBOSITY_2 bool - prompt "Brief build (show defines, ld flags)" + prompt "Very verbose build" help Print full command lines. endchoice +# uClibc-ng has reverted the meaning of V=1 and V=2 compared to its +# ancestor, uClibc, in order to match kernel's Kbuild settings. +# Hence, for uClibc-ng supply V=2 if "brief build" is selected, +# and so forth. config LIBC_UCLIBC_VERBOSITY string default "" if LIBC_UCLIBC_VERBOSITY_0 + default "V=2" if LIBC_UCLIBC_VERBOSITY_1 && LIBC_UCLIBC_NG default "V=1" if LIBC_UCLIBC_VERBOSITY_1 + default "V=1" if LIBC_UCLIBC_VERBOSITY_2 && LIBC_UCLIBC_NG default "V=2" if LIBC_UCLIBC_VERBOSITY_2 choice |