Received: by mail.netbsd.org (Postfix, from userid 605) id 4CAB384DD1; Mon, 29 Oct 2018 13:27:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5E72B84D3B for ; Mon, 29 Oct 2018 13:27:26 +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 CmsBwO58tEyb for ; Mon, 29 Oct 2018 13:27:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id AD27E84D2D for ; Mon, 29 Oct 2018 13:27:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A056AFBEE; Mon, 29 Oct 2018 13:27:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1540819645175170" MIME-Version: 1.0 Date: Mon, 29 Oct 2018 13:27:25 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/sysutils/beats To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20181029132725.A056AFBEE@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. --_----------=_1540819645175170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon Oct 29 13:27:25 UTC 2018 Modified Files: pkgsrc/sysutils/beats: Makefile Log Message: beats: Don't use "go build -i", it overwrites system files! Users who have previously installed this package by building as root should very carefully check their Go installations. Running "pkg_admin check" will almost certainly fail. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/sysutils/beats/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1540819645175170 Content-Disposition: inline Content-Length: 829 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/beats/Makefile diff -u pkgsrc/sysutils/beats/Makefile:1.31 pkgsrc/sysutils/beats/Makefile:1.32 --- pkgsrc/sysutils/beats/Makefile:1.31 Fri Oct 19 16:49:58 2018 +++ pkgsrc/sysutils/beats/Makefile Mon Oct 29 13:27:25 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2018/10/19 16:49:58 jperkin Exp $ +# $NetBSD: Makefile,v 1.32 2018/10/29 13:27:25 jperkin Exp $ DISTNAME= beats-6.2.4 PKGREVISION= 1 @@ -54,6 +54,10 @@ OWN_DIRS+= ${BEATS_DIR} ${BEATS_LOGDIR} MAKE_ENV+= GOPATH=${WRKDIR}:${PREFIX}/gopkg MAKE_ENV+= CGO_LDFLAGS="-L${BUILDLINK_PREFIX.libpcap}/lib ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.libpcap}/lib" + +# The build system defaults to -i which modifies system files! +MAKE_ENV+= GOBUILD_FLAGS= + BUILD_TARGET= # INSTALLATION_DIRS+= bin share/examples/beats --_----------=_1540819645175170--