summaryrefslogtreecommitdiff
path: root/pkgtools/pkglint/select.mk
blob: 56bc9577908fbcd43d0768dce5365909c5162a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $NetBSD: select.mk,v 1.4 2016/03/23 16:36:53 gdt Exp $
#
# Selects the proper version of pkglint, depending on whether the
# platform supports the Go programming language.
#

.include "../../mk/bsd.fast.prefs.mk"

# See lang/go/version.mk
# While it's wrong in the above, go14 does not build on NetBSD 5.
.if ${MACHINE_ARCH:Ni386:Nx86_64:Nevbarm} || ${MACHINE_PLATFORM:MSunOS-*-i386} || ${MACHINE_PLATFORM:MNetBSD-[1-5]*-*}
DEPENDS+=	pkglint4>=4.82<5:../../pkgtools/pkglint4
.else
DEPENDS+=	pkglint>=5:../../pkgtools/pkglint
.endif