@@ -225,7 +225,7 @@ ENVS__output/bin/limactl$(exe) = CGO_ENABLED=1 GOOS=$(GOOS) GOARCH=$(GOARCH) CC=
225225
226226_output/bin/limactl$(exe ) : $(LIMACTL_DEPS ) $$(call force_build,$$@ )
227227# If the previous cross-compilation was for GOOS=windows, limactl.exe might still be present.
228- ifneq ($(GOOS ) ,windows) #
228+ ifneq ($(GOOS ) ,windows) #
229229 @rm -rf _output/bin/limactl.exe
230230else
231231 @rm -rf _output/bin/limactl
@@ -254,7 +254,7 @@ MKDIR_TARGETS += _output/bin
254254# _output/share/lima/lima-guestagent
255255LINUX_GUESTAGENT_PATH_COMMON = _output/share/lima/lima-guestagent.Linux-
256256
257- # How to add architecure specific guestagent:
257+ # How to add architecture specific guestagent:
258258# 1. Add the architecture to GUESTAGENT_ARCHS
259259# 2. Add ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)<arch> to set GOOS, GOARCH, and other necessary environment variables
260260GUESTAGENT_ARCHS = aarch64 armv7l riscv64 x86_64
@@ -395,8 +395,8 @@ native_compiling = $(if $(cross_compiling),,true)
395395# ###############################################################################
396396# _output/share/man/man1
397397.PHONY : manpages
398- # Set limactl.1 as explicit dependency.
399- # It's uncertain how many manpages will be generated by `make`,
398+ # Set limactl.1 as explicit dependency.
399+ # It's uncertain how many manpages will be generated by `make`,
400400# because `limactl` generates them without corresponding source code for the manpages.
401401manpages : _output/share/man/man1/limactl.1
402402_output/share/man/man1/limactl.1 : _output/bin/limactl$(exe )
@@ -410,7 +410,7 @@ endif
410410# ###############################################################################
411411.PHONY : docsy
412412# Set limactl.md as explicit dependency.
413- # It's uncertain how many docsy pages will be generated by `make`,
413+ # It's uncertain how many docsy pages will be generated by `make`,
414414# because `limactl` generates them without corresponding source code for the docsy pages.
415415docsy : website/_output/docsy/limactl.md
416416website/_output/docsy/limactl.md : _output/bin/limactl$(exe )
@@ -488,7 +488,7 @@ generate:
488488# returns the capitalized string of $(1).
489489capitalize = $(shell echo "$(1 ) "|awk '{print toupper(substr($$0,1,1) ) tolower(substr($$0,2))}')
490490
491- # returns the architecture name converted from GOARCH to GNU coreutils uname -m.
491+ # returns the architecture name converted from GOARCH to GNU coreutils uname -m.
492492to_uname_m = $(foreach arch,$(1 ) ,$(shell echo $(arch ) | sed 's/amd64/x86_64/' | sed 's/arm64/aarch64/') )
493493
494494ARTIFACT_FILE_EXTENSIONS := .tar.gz
0 commit comments