svn commit: r493888 - head/security/2fa

Steve Wills swills at FreeBSD.org
Mon Feb 25 18:40:55 UTC 2019


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 at 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


More information about the svn-ports-all mailing list