@@ -160,7 +160,7 @@ find_files_excluding_dir_and_test = $(shell find $(1) ! -type d ! -name '*_test.
160160FILES_IN_PKG = $(call find_files_excluding_dir_and_test, ./pkg)
161161
162162# returns a list of files which are dependencies for the command $(1).
163- dependencis_for_cmd = go.mod $(call find_files_excluding_dir_and_test, ./cmd/$(1 ) ) $(FILES_IN_PKG )
163+ dependencies_for_cmd = go.mod $(call find_files_excluding_dir_and_test, ./cmd/$(1 ) ) $(FILES_IN_PKG )
164164
165165# ## Force Building Targets
166166
@@ -214,7 +214,7 @@ force: # placeholder for force build
214214# _output/bin/limactl$(exe)
215215
216216# dependencies for limactl
217- LIMACTL_DEPS = $(call dependencis_for_cmd ,limactl)
217+ LIMACTL_DEPS = $(call dependencies_for_cmd ,limactl)
218218ifeq ($(GOOS ) ,darwin)
219219LIMACTL_DEPS += vz.entitlements
220220endif
@@ -302,7 +302,7 @@ ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)aarch64 = CGO_ENABLED=0 GOOS=linux GOARCH=ar
302302ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)armv7l = CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=7
303303ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)riscv64 = CGO_ENABLED=0 GOOS=linux GOARCH=riscv64
304304ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)x86_64 = CGO_ENABLED=0 GOOS=linux GOARCH=amd64
305- $(ALL_GUESTAGENTS_NOT_COMPRESSED ) : $(call dependencis_for_cmd ,lima-guestagent) $$(call force_build_with_gunzip,$$@ ) | _output/share/lima
305+ $(ALL_GUESTAGENTS_NOT_COMPRESSED ) : $(call dependencies_for_cmd ,lima-guestagent) $$(call force_build_with_gunzip,$$@ ) | _output/share/lima
306306 $(ENVS_$@ ) $(GO_BUILD ) -o $@ ./cmd/lima-guestagent
307307 chmod 644 $@
308308$(LINUX_GUESTAGENT_PATH_COMMON ) % .gz : $(LINUX_GUESTAGENT_PATH_COMMON ) % $$(call force_build_with_gunzip,$$@ )
0 commit comments