diff options
author | kmoore <kmoore@FreeBSD.org> | 2016-06-23 21:23:13 +0800 |
---|---|---|
committer | kmoore <kmoore@FreeBSD.org> | 2016-06-23 21:23:13 +0800 |
commit | dabcd06dfb77d6f9d69905298f8c3e47462aac33 (patch) | |
tree | 25495f4dfa12f76107e5332d6880bc6ecb67bfaf /sysutils | |
parent | 3dfe7dd8acff5cad49bd2bf6cf63a9f7e0071aec (diff) | |
download | freebsd-ports-gnome-dabcd06dfb77d6f9d69905298f8c3e47462aac33.tar.gz freebsd-ports-gnome-dabcd06dfb77d6f9d69905298f8c3e47462aac33.tar.zst freebsd-ports-gnome-dabcd06dfb77d6f9d69905298f8c3e47462aac33.zip |
- Fix a compile-time warning and future compat with
newer versions of GO
PR: 210456
Submitted by: John Hixson <jhixson@gmail.com>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/nomad/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/nomad/Makefile b/sysutils/nomad/Makefile index 6ee613746425..f881a8195cc0 100644 --- a/sysutils/nomad/Makefile +++ b/sysutils/nomad/Makefile @@ -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 |