diff options
| author | Anisse Astier <anisse@astier.eu> | 2018-05-11 22:50:36 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-05-11 23:05:32 +0200 |
| commit | 486334dd819b15943b6f9e93868a354be0b8ab20 (patch) | |
| tree | da9dbed62c893be6adcf51ee0cfcc1b4f978d1b2 | |
| parent | 14441d6ec72b168c245d3f933fc2bf3094f1f6e4 (diff) | |
| download | buildroot-486334dd819b15943b6f9e93868a354be0b8ab20.tar.gz buildroot-486334dd819b15943b6f9e93868a354be0b8ab20.zip | |
go: honor building with V=1 for debugging purposes
Signed-off-by: Anisse Astier <anisse@astier.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
| -rw-r--r-- | package/go/go.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/go/go.mk b/package/go/go.mk index b70c5d49d8..6e2612481d 100644 --- a/package/go/go.mk +++ b/package/go/go.mk @@ -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 |

