Browse Source

Unset GOROOT and GOBIN in Makefile

To avoid issues with existing environment variables while building Go
sources the Makefile now removes existing GOROOT and GOBIN environment
variables. This should fix issues like #324 where the environment
already contains some sort of Go settings.
pull/333/head
Simon Eisenmann 9 years ago
parent
commit
0b051e7fae
  1. 3
      Makefile.am

3
Makefile.am

@ -21,6 +21,9 @@ @@ -21,6 +21,9 @@
AUTOMAKE_OPTIONS = -Wno-portability
ACLOCAL_AMFLAGS = -I m4
unexport GOROOT
unexport GOBIN
EXENAME := spreed-webrtc-server
GOPKG := github.com/strukturag/spreed-webrtc
GOPATH := "$(CURDIR)/vendor:$(CURDIR)"

Loading…
Cancel
Save