diff options
author | yuri <yuri@FreeBSD.org> | 2018-03-18 11:55:13 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-03-18 11:55:13 +0800 |
commit | ba56535693adcd2e40b4fb48d508de75302b3d9a (patch) | |
tree | b65d8921393507062b83f17e806ad9e786e1ef9c /net-mgmt | |
parent | 0422a6dd2375493154933f8e816f8020b8ea5d7a (diff) | |
download | freebsd-ports-gnome-ba56535693adcd2e40b4fb48d508de75302b3d9a.tar.gz freebsd-ports-gnome-ba56535693adcd2e40b4fb48d508de75302b3d9a.tar.zst freebsd-ports-gnome-ba56535693adcd2e40b4fb48d508de75302b3d9a.zip |
Made 14 Go ports respect MAKE_ENV. This is expected to unbreak them.
Ports:
www/fabio benchmarks/bombardier www/go-www net-mgmt/prometheus2 sysutils/immortal
sysutils/docker-freebsd audio/pms-devel sysutils/consul-alerts net-mgmt/pushgateway net/nsq
textproc/jid net-mgmt/alertmanager sysutils/nomad security/ssh-vault
Approved by: portmgr (port compliance, infrastructure)
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/alertmanager/Makefile | 4 | ||||
-rw-r--r-- | net-mgmt/prometheus2/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/pushgateway/Makefile | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/net-mgmt/alertmanager/Makefile b/net-mgmt/alertmanager/Makefile index ab84585a7db7..486ef8d5b8a2 100644 --- a/net-mgmt/alertmanager/Makefile +++ b/net-mgmt/alertmanager/Makefile @@ -23,8 +23,8 @@ USERS= alertmanager GROUPS= alertmanager do-build: - @cd ${GO_WRKSRC}/cmd/alertmanager && ${SETENV} ${GO_ENV} go install - @cd ${GO_WRKSRC}/cmd/amtool && ${SETENV} ${GO_ENV} go install + @cd ${GO_WRKSRC}/cmd/alertmanager && ${SETENV} ${MAKE_ENV} ${GO_ENV} go install + @cd ${GO_WRKSRC}/cmd/amtool && ${SETENV} ${MAKE_ENV} ${GO_ENV} go install do-install: ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/alertmanager ${STAGEDIR}${PREFIX}/bin diff --git a/net-mgmt/prometheus2/Makefile b/net-mgmt/prometheus2/Makefile index 044eaf324cda..a749cf7f4ace 100644 --- a/net-mgmt/prometheus2/Makefile +++ b/net-mgmt/prometheus2/Makefile @@ -36,7 +36,7 @@ PROMETHEUS_BINARIES= prometheus promtool do-build: .for bin in ${PROMETHEUS_BINARIES} ( cd ${GO_WRKSRC}/cmd/${bin} ; \ - ${SETENV} ${GO_ENV} go install -ldflags "${LD_FLAG_STRING}" ) + ${SETENV} ${MAKE_ENV} ${GO_ENV} go install -ldflags "${LD_FLAG_STRING}" ) .endfor do-install: diff --git a/net-mgmt/pushgateway/Makefile b/net-mgmt/pushgateway/Makefile index d2159bb396e3..3e8142151e3f 100644 --- a/net-mgmt/pushgateway/Makefile +++ b/net-mgmt/pushgateway/Makefile @@ -24,7 +24,7 @@ USERS= prometheus GROUPS= prometheus do-build: - (cd ${GO_WRKSRC} ; ${SETENV} ${GO_ENV} go install) + @(cd ${GO_WRKSRC} ; ${SETENV} ${MAKE_ENV} ${GO_ENV} go install) do-install: ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/pushgateway ${STAGEDIR}${PREFIX}/bin |