Revision 9739
Added by Aaron Marcuse-Kubitza over 11 years ago
make.sh | ||
---|---|---|
35 | 35 |
{ |
36 | 36 |
echo_func |
37 | 37 |
( |
38 |
# at verbosity < 3, hide messages about making included Makefiles
|
|
38 |
# at verbosity < 4, hide messages about making included Makefiles
|
|
39 | 39 |
# this can reduce # lines of output to 1/3 as much |
40 |
if ! "log+" 2 can_log; then fd="$log_fd" "log++" filter_fd grep -vE \
|
|
40 |
if ! "log+" 3 can_log; then fd="$log_fd" "log++" filter_fd grep -vE \
|
|
41 | 41 |
'^make( ([^-]\S*)?|\[\d+\]: .*)Makefile'; fi |
42 | 42 |
cmd_log_fd=1 self $(if ! can_log; then echo '--silent '; fi)"$@" |
43 | 43 |
) |
Also available in: Unified diff
lib/sh/make.sh: make(): log the messages about making included Makefiles at log_level 4 instead of 3, so that verbosity 3 can be used to see the vars being used by the filtering process (i.e. the filtering process must still be enabled at verbosity 3)