pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/go



Module Name:    pkgsrc
Committed By:   maya
Date:           Sun Nov 27 21:07:22 UTC 2016

Modified Files:
        pkgsrc/lang/go: version.mk

Log Message:
go: match more netbsd/arm, which can be machine arch earm,
and not just evbarm.

PR pkg/51653

Note that this does not resolve the PR, as the build hangs.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/lang/go/version.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/go/version.mk
diff -u pkgsrc/lang/go/version.mk:1.18 pkgsrc/lang/go/version.mk:1.19
--- pkgsrc/lang/go/version.mk:1.18      Thu Oct 27 18:58:00 2016
+++ pkgsrc/lang/go/version.mk   Sun Nov 27 21:07:21 2016
@@ -1,11 +1,11 @@
-# $NetBSD: version.mk,v 1.18 2016/10/27 18:58:00 bsiegert Exp $
+# $NetBSD: version.mk,v 1.19 2016/11/27 21:07:21 maya Exp $
 
 .include "../../mk/bsd.prefs.mk"
 
 GO_VERSION=    1.7.3
 GO14_VERSION=  1.4.3
 
-ONLY_FOR_PLATFORM=     *-*-i386 *-*-x86_64 *-*-evbarm
+ONLY_FOR_PLATFORM=     *-*-i386 *-*-x86_64 *-*-*arm
 NOT_FOR_PLATFORM=      SunOS-*-i386
 .if ${MACHINE_ARCH} == "i386"
 GOARCH=                386
@@ -13,7 +13,7 @@ GOCHAR=               8
 .elif ${MACHINE_ARCH} == "x86_64"
 GOARCH=                amd64
 GOCHAR=                6
-.elif ${MACHINE_ARCH} == "evbarm"
+.elif !empty(MACHINE_ARCH:M*arm)
 GOARCH=                arm
 GOCHAR=                5
 .endif



Home | Main Index | Thread Index | Old Index