From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Boris Newsgroups: gmane.emacs.devel Subject: Re: [bootstrap-emacs.pdmp] Killed: 9 Date: Wed, 31 Mar 2021 12:19:07 +0000 Message-ID: Reply-To: Boris Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23546"; mail-complaints-to="usenet@ciao.gmane.io" To: "emacs-devel@gnu.org" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Mar 31 14:21:03 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lRZqH-0005yx-EQ for ged-emacs-devel@m.gmane-mx.org; Wed, 31 Mar 2021 14:21:01 +0200 Original-Received: from localhost ([::1]:34376 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lRZqG-0007ux-FY for ged-emacs-devel@m.gmane-mx.org; Wed, 31 Mar 2021 08:21:00 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:58956) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lRZoz-0006yW-96 for emacs-devel@gnu.org; Wed, 31 Mar 2021 08:19:41 -0400 Original-Received: from mail-40133.protonmail.ch ([185.70.40.133]:60330) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lRZov-00047P-9B for emacs-devel@gnu.org; Wed, 31 Mar 2021 08:19:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=d12frosted.io; s=protonmail3; t=1617193164; bh=HXPemRLydXNQFOurKvb/Gjz2+r/OGKCEJ9S5G7lF3xo=; h=Date:To:From:Reply-To:Subject:From; b=pwTeruHu+mdar3SJlr2ukK2h0KujjgJpQFm+xi6hsGYoq8AFN9iTCtoIRK6hmMD+f cluxXz276BSRMDG+olQ41aaJ63z0ANulFmOx4hK5UtNnemSrPK21FygwYFu/be5p9p 1xNQ6PHjUaVjPFuJrpuiRn4jBI6zTot8kncX7B6iahJt0XMU9e2tpEHm+8YgG0jW2A WQSQptVJz1S3qmhPfdzARqoZfIvyxQOvqiSGhKAB2NqF8rA/3RuLjlWT3Dqilegv9p p/caUcCy8dnnoOM76BhZXaUgSkqfMOajUJj5/FOvNXQ6Hgq7T0/vSndlHqasLja/G/ wlJKcXW2g/Wjg== Received-SPF: pass client-ip=185.70.40.133; envelope-from=boris@d12frosted.io; helo=mail-40133.protonmail.ch X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:267215 Archived-At: Hi, I noticed this error as well and reverting fda9b3e83a434706c31ab1bee5c15511= c0181d5a fixed the issue. e.g. --- src/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.in b/src/Makefile.in index 39fd708564..c66e67447a 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -339,7 +339,7 @@ HAVE_PDUMPER =3D @HAVE_PDUMPER@ ## ARM Macs require that all code have a valid signature. Since pump ## invalidates the signature, we must re-sign to fix it. -DO_CODESIGN=3D$(patsubst arm-apple-darwin%,yes,@configuration@) +DO_CODESIGN=3D$(patsubst aarch64-apple-darwin%,yes,@configuration@) # 'make' verbosity. AM_DEFAULT_VERBOSITY =3D @AM_DEFAULT_VERBOSITY@ -- Cheers, boris@d12frosted.io