golang: enable verbose output
allow the building script of Go to output verbose when make is executed with "V=s..." Signed-off-by: Michael Pratt <mcpratt@pm.me>
This commit is contained in:
parent
abf28899a0
commit
b99164aff4
1 changed files with 4 additions and 1 deletions
|
@ -27,7 +27,10 @@ define GoCompiler/Default/Make
|
|||
cd "$(1)/src" ; \
|
||||
$(if $(2),GOROOT_FINAL="$(2)/lib/go-$(3)") \
|
||||
$(4) \
|
||||
$(BASH) make.bash --no-banner ; \
|
||||
$(BASH) make.bash \
|
||||
$(if $(findstring s,$(OPENWRT_VERBOSE)),-v) \
|
||||
--no-banner \
|
||||
; \
|
||||
)
|
||||
endef
|
||||
|
||||
|
|
Loading…
Reference in a new issue