diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2018-03-07 16:06:24 +0800 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2018-03-07 16:06:24 +0800 |
commit | 54e279cd729c9bf5428e3d8423fec99fa7e97b8d (patch) | |
tree | 2de9381d204a65a62d4393ca3bb1a5b85c51daeb /misc | |
parent | 15a23210ccc7af4d05fbe6ad3ae66e6793719b98 (diff) | |
download | freebsd-ports-gnome-54e279cd729c9bf5428e3d8423fec99fa7e97b8d.tar.gz freebsd-ports-gnome-54e279cd729c9bf5428e3d8423fec99fa7e97b8d.tar.zst freebsd-ports-gnome-54e279cd729c9bf5428e3d8423fec99fa7e97b8d.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 'misc')
-rw-r--r-- | misc/exercism/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/exercism/Makefile b/misc/exercism/Makefile index 59b30dbc066a..f56788cc6674 100644 --- a/misc/exercism/Makefile +++ b/misc/exercism/Makefile @@ -25,7 +25,7 @@ post-patch: do-build: @(cd ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${GH_PROJECT} ; \ - ${SETENV} GO15VENDOREXPERIMENT=1 GOPATH=${WRKSRC} go build -o bin/exercism exercism/main.go) + ${SETENV} ${MAKE_ENV} GO15VENDOREXPERIMENT=1 GOPATH=${WRKSRC} go build -o bin/exercism exercism/main.go) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${GH_PROJECT}/bin/exercism ${STAGEDIR}${PREFIX}/bin |