From a0cdb95b75080f024976dc962cdc191ccd4f1141 Mon Sep 17 00:00:00 2001 From: Jan Dubois Date: Mon, 21 Oct 2024 10:46:26 -0700 Subject: [PATCH] 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 --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index a33ec11a0fd..f0ca7b62319 100644 --- a/Makefile +++ b/Makefile @@ -575,12 +575,6 @@ artifacts-misc: | _artifacts MKDIR_TARGETS += _artifacts ################################################################################ -.PHONY: codesign -codesign: _output/bin/limactl -ifeq ($(GOOS),darwin) - codesign --entitlements vz.entitlements -s - $< -endif - # This target must be placed after any changes to the `MKDIR_TARGETS` variable. # It seems that variable expansion in Makefile targets is not done recursively. $(MKDIR_TARGETS):