summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2012-04-15 18:03:56 +0200
committerYorhel <git@yorhel.nl>2012-04-15 18:03:56 +0200
commit7105b12f0a6634a06745fb52999fd4608ebb8362 (patch)
tree961e030ae8e84b09bd74cd2f37cda4029fb4cdd4
parent2eedc86d7c7f7afefc4e2da0de188be6fc9a3e2b (diff)
Makefile: Make sure to export the GOBIN/GOPATH variablesHEADmaster
Otherwise they won't be available to the go utility unless they were already exported before.
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 49dedc5..4c65ffa 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,9 @@ GOPATH:=${PWD}:${GOPATH}
OLDBIN:=${GOBIN}
GOBIN:=${PWD}
+export GOPATH
+export GOBIN
+
all:
go get -v globster/...