We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6642df commit deec82eCopy full SHA for deec82e
Makefile
@@ -26,7 +26,7 @@ clean:
26
$(DIST)/$(BIN_NAME)-%: GOOS = $(word 1,$(subst -, ,$*))
27
$(DIST)/$(BIN_NAME)-%: GOARCH = $(word 2,$(subst -, ,$*))
28
$(DIST)/$(BIN_NAME)-%: $(SOURCE)
29
- CGO=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(ARGS) -ldflags="$(LDFLAGS)" -o $@
+ CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(ARGS) -ldflags="$(LDFLAGS)" -o $@
30
31
shasums: $(DIST)/$(BIN_NAME)-shasums
32
$(DIST)/$(BIN_NAME)-shasums: all
0 commit comments