Received: by mail.netbsd.org (Postfix, from userid 605) id 0A30F84DD8; Fri, 19 Oct 2018 15:17:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0B03684DD7 for ; Fri, 19 Oct 2018 15:17:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 977fMpkGZtqm for ; Fri, 19 Oct 2018 15:17:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3961A84CD4 for ; Fri, 19 Oct 2018 15:17:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 31FFEFBEE; Fri, 19 Oct 2018 15:17:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153996224648310" MIME-Version: 1.0 Date: Fri, 19 Oct 2018 15:17:26 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/pkgtools/pkglint To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20181019151726.31FFEFBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_153996224648310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Oct 19 15:17:26 UTC 2018 Modified Files: pkgsrc/pkgtools/pkglint: Makefile Log Message: pkglint: go-package.mk needs to come before bsd.prefs.mk To generate a diff of this commit: cvs rdiff -u -r1.551 -r1.552 pkgsrc/pkgtools/pkglint/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153996224648310 Content-Disposition: inline Content-Length: 974 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pkglint/Makefile diff -u pkgsrc/pkgtools/pkglint/Makefile:1.551 pkgsrc/pkgtools/pkglint/Makefile:1.552 --- pkgsrc/pkgtools/pkglint/Makefile:1.551 Tue Oct 9 23:17:17 2018 +++ pkgsrc/pkgtools/pkglint/Makefile Fri Oct 19 15:17:26 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.551 2018/10/09 23:17:17 rillig Exp $ +# $NetBSD: Makefile,v 1.552 2018/10/19 15:17:26 jperkin Exp $ PKGNAME= pkglint-5.6.5 DISTFILES= # none @@ -33,6 +33,9 @@ pre-install: post-install: do-install-man +# This needs to come before bsd.prefs.mk so that SSP_SUPPORTED is properly set. +.include "../../lang/go/go-package.mk" + .include "../../mk/bsd.prefs.mk" do-install-man: .PHONY @@ -47,7 +50,6 @@ do-install-man: .PHONY ${INSTALL_MAN} ${WRKSRC}/pkglint.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 .endif -.include "../../lang/go/go-package.mk" .if !empty(PKGSRC_RUN_TEST:M[yY][eE][sS]) . include "../../devel/go-check/buildlink3.mk" .endif --_----------=_153996224648310--