]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
go: honor building with V=1 for debugging purposes
authorAnisse Astier <anisse@astier.eu>
Fri, 11 May 2018 20:50:36 +0000 (22:50 +0200)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Fri, 11 May 2018 21:05:32 +0000 (23:05 +0200)
Signed-off-by: Anisse Astier <anisse@astier.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/go/go.mk

index b70c5d49d8fbf4668c40258f223e9503cf6e2179..6e2612481d46b544af5eec221339e6b4ccfa9ac3 100644 (file)
@@ -78,7 +78,8 @@ HOST_GO_TARGET_CC = \
 
 define HOST_GO_BUILD_CMDS
        cd $(@D)/src && \
-               $(HOST_GO_MAKE_ENV) $(HOST_GO_TARGET_CC) CGO_ENABLED=$(HOST_GO_CGO_ENABLED) ./make.bash
+               $(HOST_GO_MAKE_ENV) $(HOST_GO_TARGET_CC) CGO_ENABLED=$(HOST_GO_CGO_ENABLED) \
+               ./make.bash $(if $(VERBOSE),-v)
 endef
 
 define HOST_GO_INSTALL_CMDS