diff options
author | Dmitri Goutnik <dmgk@FreeBSD.org> | 2019-09-20 11:31:49 +0000 |
---|---|---|
committer | Dmitri Goutnik <dmgk@FreeBSD.org> | 2019-09-20 11:31:49 +0000 |
commit | 29d16a42da3e45cfa889d2a13d63b4b48827d51d (patch) | |
tree | 02faa2c2048212fefcfd9785a72467cd3c80b570 /sysutils | |
parent | Update to 2.2.118 (diff) |
Go ports: cleanup, make use of the new GO_TARGET tuple syntax
- Remove custom build/install targets left in place after r505321
- Switch to the new GO_TARGET tuple syntax introduced in r512001
Approved by: araujo (mentor)
Differential Revision: https://reviews.freebsd.org/D21721
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/docker-credential-pass/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sysutils/docker-credential-pass/Makefile b/sysutils/docker-credential-pass/Makefile index 75d93395a3e6..b66d0706c6ad 100644 --- a/sysutils/docker-credential-pass/Makefile +++ b/sysutils/docker-credential-pass/Makefile @@ -16,7 +16,7 @@ RUN_DEPENDS= ${LOCALBASE}/bin/pass:sysutils/password-store USES= go GO_PKGNAME= github.com/docker/docker-credential-helpers -GO_TARGET= ./pass/cmd +GO_TARGET= ./pass/cmd:${PORTNAME} USE_GITHUB= yes GH_ACCOUNT= docker @@ -28,7 +28,4 @@ pre-build: ${LN} -s ${GO_WRKSRC}/pass/cmd/main_linux.go ${GO_WRKSRC}/pass/cmd/main_freebsd.go ${LN} -s ${GO_WRKSRC}/pass/pass_linux.go ${GO_WRKSRC}/pass/pass_freebsd.go -do-install: - ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/cmd ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - .include <bsd.port.mk> |