aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtem Loenko2020-12-29 20:41:14 +0100
committerPhilipp Stephani2020-12-29 20:42:01 +0100
commita88f63500e475f842e5fbdd9abba4ce122cdb082 (patch)
tree5de407bb4af894d9cfb328021666474dbb6263f6
parent0a82e66db42a5cb81cf54b904c20410cf9218f8f (diff)
downloademacs-a88f63500e475f842e5fbdd9abba4ce122cdb082.tar.gz
emacs-a88f63500e475f842e5fbdd9abba4ce122cdb082.zip
* src/Makefile.in (DO_CODESIGN): Fix architecture for Apple Silicon
-rw-r--r--src/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 19304cca040..39c0f12fe6c 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -338,7 +338,7 @@ HAVE_PDUMPER = @HAVE_PDUMPER@
338 338
339## ARM Macs require that all code have a valid signature. Since pump 339## ARM Macs require that all code have a valid signature. Since pump
340## invalidates the signature, we must re-sign to fix it. 340## invalidates the signature, we must re-sign to fix it.
341DO_CODESIGN=$(patsubst arm-apple-darwin%,yes,@configuration@) 341DO_CODESIGN=$(patsubst aarch64-apple-darwin%,yes,@configuration@)
342 342
343# 'make' verbosity. 343# 'make' verbosity.
344AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ 344AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@