diff options
| author | Artem Loenko | 2020-12-29 20:41:14 +0100 |
|---|---|---|
| committer | Philipp Stephani | 2020-12-29 20:42:01 +0100 |
| commit | a88f63500e475f842e5fbdd9abba4ce122cdb082 (patch) | |
| tree | 5de407bb4af894d9cfb328021666474dbb6263f6 | |
| parent | 0a82e66db42a5cb81cf54b904c20410cf9218f8f (diff) | |
| download | emacs-a88f63500e475f842e5fbdd9abba4ce122cdb082.tar.gz emacs-a88f63500e475f842e5fbdd9abba4ce122cdb082.zip | |
* src/Makefile.in (DO_CODESIGN): Fix architecture for Apple Silicon
| -rw-r--r-- | src/Makefile.in | 2 |
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. |
| 341 | DO_CODESIGN=$(patsubst arm-apple-darwin%,yes,@configuration@) | 341 | DO_CODESIGN=$(patsubst aarch64-apple-darwin%,yes,@configuration@) |
| 342 | 342 | ||
| 343 | # 'make' verbosity. | 343 | # 'make' verbosity. |
| 344 | AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ | 344 | AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ |