Date: Thu, 23 Jun 2016 13:23:13 +0000 (UTC) From: Kris Moore <kmoore@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417375 - head/sysutils/nomad Message-ID: <201606231323.u5NDNDCe066333@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kmoore Date: Thu Jun 23 13:23:13 2016 New Revision: 417375 URL: https://svnweb.freebsd.org/changeset/ports/417375 Log: - Fix a compile-time warning and future compat with newer versions of GO PR: 210456 Submitted by: John Hixson <jhixson@gmail.com> Modified: head/sysutils/nomad/Makefile Modified: head/sysutils/nomad/Makefile ============================================================================== --- head/sysutils/nomad/Makefile Thu Jun 23 13:19:17 2016 (r417374) +++ head/sysutils/nomad/Makefile Thu Jun 23 13:23:13 2016 (r417375) @@ -66,7 +66,7 @@ post-patch: do-build: @cd ${WRKSRC}/src/github.com/hashicorp/nomad; \ ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -v -x \ - -ldflags "-X main.GitDescribe v${PORTVERSION}" -o bin/nomad + -ldflags "-X main.GitDescribe=v${PORTVERSION}" -o bin/nomad do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/hashicorp/nomad/bin/nomad ${STAGEDIR}${PREFIX}/bin/nomad
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606231323.u5NDNDCe066333>