diff options
author | Johannes Stezenbach <js@sig21.net> | 2010-07-13 12:12:32 +0200 |
---|---|---|
committer | Johannes Stezenbach <js@sig21.net> | 2010-07-13 12:12:32 +0200 |
commit | ab067a92c1f217fb409dccfcf23a26179af5aafb (patch) | |
tree | b481ed7ff17897bc528663e4abb765578e2d58bc /config/libc/uClibc.in | |
parent | 2ad6d48f78e0092d7a117072478c3d591a7fa968 (diff) | |
download | crosstool-ng-ab067a92c1f217fb409dccfcf23a26179af5aafb.tar.gz crosstool-ng-ab067a92c1f217fb409dccfcf23a26179af5aafb.tar.bz2 crosstool-ng-ab067a92c1f217fb409dccfcf23a26179af5aafb.zip |
libc/uClibc: fix verbosity level for uClibc >= 0.9.30
uClibc >= 0.9.30 supports three verbosity levels, according to "make help":
V="" - Quiet build (default)
V=1 - Brief build (show defines, ld flags)
V=2 - Very verbose build
I think older versions of uClibc treat V=2 the same as V=1.
For current uClibc, only V=2 shows the full command lines.
Signed-off-by: Johannes Stezenbach <js@sig21.net>
Diffstat (limited to 'config/libc/uClibc.in')
-rw-r--r-- | config/libc/uClibc.in | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/config/libc/uClibc.in b/config/libc/uClibc.in index aba8674d..04386584 100644 --- a/config/libc/uClibc.in +++ b/config/libc/uClibc.in @@ -93,13 +93,19 @@ choice config LIBC_UCLIBC_VERBOSITY_0 bool - prompt "Simplified" + prompt "Quiet build" help - Print simplified command lines. + Print terse command indications. config LIBC_UCLIBC_VERBOSITY_1 bool - prompt "Full commands" + prompt "Brief build (show defines, ld flags)" + help + Print simplified command lines. + +config LIBC_UCLIBC_VERBOSITY_2 + bool + prompt "Very verbose build" help Print full command lines. @@ -109,6 +115,7 @@ config LIBC_UCLIBC_VERBOSITY string default "" if LIBC_UCLIBC_VERBOSITY_0 default "V=1" if LIBC_UCLIBC_VERBOSITY_1 + default "V=2" if LIBC_UCLIBC_VERBOSITY_2 choice bool |