pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/lang/go go: Remove go-bin code signatures on Darwin/aa...
details: https://anonhg.NetBSD.org/pkgsrc/rev/cbe50113811d
branches: trunk
changeset: 455913:cbe50113811d
user: jperkin <jperkin%pkgsrc.org@localhost>
date: Wed Jul 14 10:18:28 2021 +0000
description:
go: Remove go-bin code signatures on Darwin/aarch64.
Fixes the build of go116 when inside a chroot as the signatures cannot be
verified for some reason.
diffstat:
lang/go/bootstrap.mk | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diffs (21 lines):
diff -r bab9e7fc9d15 -r cbe50113811d lang/go/bootstrap.mk
--- a/lang/go/bootstrap.mk Wed Jul 14 09:15:35 2021 +0000
+++ b/lang/go/bootstrap.mk Wed Jul 14 10:18:28 2021 +0000
@@ -1,9 +1,16 @@
-# $NetBSD: bootstrap.mk,v 1.5 2020/12/12 11:08:26 maya Exp $
+# $NetBSD: bootstrap.mk,v 1.6 2021/07/14 10:18:28 jperkin Exp $
.if !defined(GOROOT_BOOTSTRAP) || !exists(${GOROOT_BOOTSTRAP}/bin/go)
. if ${MACHINE_ARCH} == "aarch64"
BUILD_DEPENDS+= go-bin-[0-9]*:../../lang/go-bin
GOROOT_BOOTSTRAP= ${PREFIX}/go-bin
+. if ${OPSYS} == "Darwin"
+pre-build: remove-codesign
+remove-codesign:
+ @for f in ${PREFIX}/go-bin/bin/* ${PREFIX}/go-bin/pkg/tool/darwin_arm64/*; do \
+ /usr/bin/codesign --remove-signature $$f; \
+ done
+. endif
. else
BUILD_DEPENDS+= go14-1.4*:../../lang/go14
GOROOT_BOOTSTRAP= ${PREFIX}/go14
Home |
Main Index |
Thread Index |
Old Index