diff options
author | yuri <yuri@FreeBSD.org> | 2018-03-07 16:06:24 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-03-07 16:06:24 +0800 |
commit | 37b293571d8844023156151aa3a7befba93ebec4 (patch) | |
tree | 2de9381d204a65a62d4393ca3bb1a5b85c51daeb /security | |
parent | 0d9e2bff4ce6f5d680ea6330e66f1c51b42753fb (diff) | |
download | freebsd-ports-gnome-37b293571d8844023156151aa3a7befba93ebec4.tar.gz freebsd-ports-gnome-37b293571d8844023156151aa3a7befba93ebec4.tar.zst freebsd-ports-gnome-37b293571d8844023156151aa3a7befba93ebec4.zip |
Make 41 Go ports respect MAKE_ENV. This is expected to unbreak them.
Ports:
benchmarks/hey benchmarks/vegeta databases/influxdb devel/arduino-builder devel/arduinoOTA
devel/awless devel/git-codereview devel/git-town devel/gitlab-runner devel/grv
devel/hub devel/jfrog-cli editors/micro finance/fixc misc/exercism
net-mgmt/intel-snap net-mgmt/kapacitor net-mgmt/telegraf net/goreplay net/syncthing
net/syncthing-cli net/syncthing-discosrv net/syncthing-inotify print/cups-connector security/sops
security/vault sysutils/amazon-ssm-agent sysutils/circonus-agent sysutils/consul sysutils/consul_exporter
sysutils/envconsul sysutils/serf textproc/consul-template textproc/spiff www/gobuffalo
www/grafana2 www/grafana3 www/mattermost-server www/minio www/minio-client
www/uchiwa
Approved by: tcberner (mentor, implicit)
Approved by: portmgr (port compliance, infrastructure)
Diffstat (limited to 'security')
-rw-r--r-- | security/sops/Makefile | 2 | ||||
-rw-r--r-- | security/vault/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/security/sops/Makefile b/security/sops/Makefile index c61b32cd999b..26875356de42 100644 --- a/security/sops/Makefile +++ b/security/sops/Makefile @@ -23,7 +23,7 @@ PORTDOCS= README.rst CHANGELOG.rst do-build: @cd ${WRKSRC}/${GH_SUBDIR} && \ - ${SETENV} GOPATH=${WRKSRC} go build -o ${PORTNAME} ./cmd/sops + ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go build -o ${PORTNAME} ./cmd/sops do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin diff --git a/security/vault/Makefile b/security/vault/Makefile index 76deb4115f76..46caa4e314be 100644 --- a/security/vault/Makefile +++ b/security/vault/Makefile @@ -27,7 +27,7 @@ PLIST_FILES= bin/${PORTNAME} do-build: @cd ${WRKSRC}; \ - ${SETENV} ${BUILD_ENV} CGO_ENABLED=0 GOPATH=${WRKSRC} \ + ${SETENV} ${MAKE_ENV} ${BUILD_ENV} CGO_ENABLED=0 GOPATH=${WRKSRC} \ go build \ -ldflags "\ -X github.com/hashicorp/vault/version.Version=${PORTVERSION} \ |