Skip to content

Commit a0cdb95

Browse files
committed
Remove codesign target from Makefile
The regular target for `_output/bin/limactl$(exe)` already does code signing unconditionally, and the redundant `codesign` target doesn't use `-f`, so would always fail anyways: `_output/bin/limactl: is already signed` Signed-off-by: Jan Dubois <[email protected]>
1 parent 8eb855a commit a0cdb95

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -575,12 +575,6 @@ artifacts-misc: | _artifacts
575575
MKDIR_TARGETS += _artifacts
576576

577577
################################################################################
578-
.PHONY: codesign
579-
codesign: _output/bin/limactl
580-
ifeq ($(GOOS),darwin)
581-
codesign --entitlements vz.entitlements -s - $<
582-
endif
583-
584578
# This target must be placed after any changes to the `MKDIR_TARGETS` variable.
585579
# It seems that variable expansion in Makefile targets is not done recursively.
586580
$(MKDIR_TARGETS):

0 commit comments

Comments
 (0)