Skip to content

Commit 216d3d6

Browse files
authored
Merge pull request #3196 from rfay/20250205_quote_CC
build: quote CC in Makefile
2 parents f95997c + 5a030c4 commit 216d3d6

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
@@ -223,7 +223,7 @@ endif
223223
#
224224
# The hostagent must be compiled with CGO_ENABLED=1 so that net.LookupIP() in the DNS server
225225
# calls the native resolver library and not the simplistic version in the Go library.
226-
ENVS__output/bin/limactl$(exe) = CGO_ENABLED=1 GOOS=$(GOOS) GOARCH=$(GOARCH) CC=$(CC)
226+
ENVS__output/bin/limactl$(exe) = CGO_ENABLED=1 GOOS="$(GOOS)" GOARCH="$(GOARCH)" CC="$(CC)"
227227

228228
_output/bin/limactl$(exe): $(LIMACTL_DEPS) $$(call force_build,$$@)
229229
# If the previous cross-compilation was for GOOS=windows, limactl.exe might still be present.

0 commit comments

Comments
 (0)