@@ -225,7 +225,7 @@ ENVS__output/bin/limactl$(exe) = CGO_ENABLED=1 GOOS=$(GOOS) GOARCH=$(GOARCH) CC=
225
225
226
226
_output/bin/limactl$(exe ) : $(LIMACTL_DEPS ) $$(call force_build,$$@ )
227
227
# If the previous cross-compilation was for GOOS=windows, limactl.exe might still be present.
228
- ifneq ($(GOOS ) ,windows) #
228
+ ifneq ($(GOOS ) ,windows) #
229
229
@rm -rf _output/bin/limactl.exe
230
230
else
231
231
@rm -rf _output/bin/limactl
@@ -254,7 +254,7 @@ MKDIR_TARGETS += _output/bin
254
254
# _output/share/lima/lima-guestagent
255
255
LINUX_GUESTAGENT_PATH_COMMON = _output/share/lima/lima-guestagent.Linux-
256
256
257
- # How to add architecure specific guestagent:
257
+ # How to add architecture specific guestagent:
258
258
# 1. Add the architecture to GUESTAGENT_ARCHS
259
259
# 2. Add ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)<arch> to set GOOS, GOARCH, and other necessary environment variables
260
260
GUESTAGENT_ARCHS = aarch64 armv7l riscv64 x86_64
@@ -395,8 +395,8 @@ native_compiling = $(if $(cross_compiling),,true)
395
395
# ###############################################################################
396
396
# _output/share/man/man1
397
397
.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`,
400
400
# because `limactl` generates them without corresponding source code for the manpages.
401
401
manpages : _output/share/man/man1/limactl.1
402
402
_output/share/man/man1/limactl.1 : _output/bin/limactl$(exe )
@@ -410,7 +410,7 @@ endif
410
410
# ###############################################################################
411
411
.PHONY : docsy
412
412
# 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`,
414
414
# because `limactl` generates them without corresponding source code for the docsy pages.
415
415
docsy : website/_output/docsy/limactl.md
416
416
website/_output/docsy/limactl.md : _output/bin/limactl$(exe )
@@ -488,7 +488,7 @@ generate:
488
488
# returns the capitalized string of $(1).
489
489
capitalize = $(shell echo "$(1 ) "|awk '{print toupper(substr($$0,1,1) ) tolower(substr($$0,2))}')
490
490
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.
492
492
to_uname_m = $(foreach arch,$(1 ) ,$(shell echo $(arch ) | sed 's/amd64/x86_64/' | sed 's/arm64/aarch64/') )
493
493
494
494
ARTIFACT_FILE_EXTENSIONS := .tar.gz
0 commit comments