@@ -160,7 +160,7 @@ find_files_excluding_dir_and_test = $(shell find $(1) ! -type d ! -name '*_test.
160
160
FILES_IN_PKG = $(call find_files_excluding_dir_and_test, ./pkg)
161
161
162
162
# 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 )
164
164
165
165
# ## Force Building Targets
166
166
@@ -214,7 +214,7 @@ force: # placeholder for force build
214
214
# _output/bin/limactl$(exe)
215
215
216
216
# dependencies for limactl
217
- LIMACTL_DEPS = $(call dependencis_for_cmd ,limactl)
217
+ LIMACTL_DEPS = $(call dependencies_for_cmd ,limactl)
218
218
ifeq ($(GOOS ) ,darwin)
219
219
LIMACTL_DEPS += vz.entitlements
220
220
endif
@@ -302,7 +302,7 @@ ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)aarch64 = CGO_ENABLED=0 GOOS=linux GOARCH=ar
302
302
ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)armv7l = CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=7
303
303
ENVS_$(LINUX_GUESTAGENT_PATH_COMMON)riscv64 = CGO_ENABLED=0 GOOS=linux GOARCH=riscv64
304
304
ENVS_$(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
306
306
$(ENVS_$@ ) $(GO_BUILD ) -o $@ ./cmd/lima-guestagent
307
307
chmod 644 $@
308
308
$(LINUX_GUESTAGENT_PATH_COMMON ) % .gz : $(LINUX_GUESTAGENT_PATH_COMMON ) % $$(call force_build_with_gunzip,$$@ )
0 commit comments