Skip to content

Commit ed563c9

Browse files
authored
fix: use single quotes in GOFLAGS ldflags to match network targets (#13330)
fix: use single quotes in GOFLAGS ldflags to match network targets
1 parent a070233 commit ed563c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ifneq ($(strip $(LDFLAGS)),)
2929
ldflags+=-extldflags=$(LDFLAGS)
3030
endif
3131

32-
GOFLAGS+=-ldflags="$(ldflags)"
32+
GOFLAGS+=-ldflags='$(ldflags)'
3333

3434
FIX_IMPORTS = $(GOCC) run ./scripts/fiximports
3535

0 commit comments

Comments
 (0)