Date: Mon, 25 Feb 2019 18:40:55 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493888 - head/security/2fa Message-ID: <201902251840.x1PIetOK024620@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Mon Feb 25 18:40:54 2019 New Revision: 493888 URL: https://svnweb.freebsd.org/changeset/ports/493888 Log: security/2fa: Unbreak build with Go 1.12 PR: 236031 Submitted by: Dmitri Goutnik <dg@syrec.org> (maintainer) Modified: head/security/2fa/Makefile (contents, props changed) Modified: head/security/2fa/Makefile ============================================================================== --- head/security/2fa/Makefile Mon Feb 25 18:31:38 2019 (r493887) +++ head/security/2fa/Makefile Mon Feb 25 18:40:54 2019 (r493888) @@ -23,10 +23,10 @@ PLIST_FILES= bin/2fa PORTDOCS= README.md do-build: - @cd ${WRKSRC}/${GH_SUBDIR} && ${SETENV} ${MAKE_ENV} GOCACHE=off GOPATH=${WRKSRC} go build -o ${PORTNAME} + @cd ${WRKSRC}/${GH_SUBDIR} && ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go build -o ${PORTNAME} do-test: - @cd ${WRKSRC}/${GH_SUBDIR} && ${SETENV} ${MAKE_ENV} GOCACHE=off GOPATH=${WRKSRC} go test + @cd ${WRKSRC}/${GH_SUBDIR} && ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go test do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902251840.x1PIetOK024620>