summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-07-20 16:06:26 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-07-24 09:29:02 -0400
commit4e2ca3d74d1cf8e74a32d63e34c92890ec56efae (patch)
tree066d4e95027e7ddf1802e64f63a6aaf5fd43dfd7 /Makefile
parent49c50f95752071c32a3d19aee36566bfa20260df (diff)
downloadchat-4e2ca3d74d1cf8e74a32d63e34c92890ec56efae.tar.gz
chat-4e2ca3d74d1cf8e74a32d63e34c92890ec56efae.tar.bz2
chat-4e2ca3d74d1cf8e74a32d63e34c92890ec56efae.zip
Fixed detection of godep when it doesn't exist on the path
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 28cdce707..e118c23aa 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ GOPATH ?= $(GOPATH:)
GOFLAGS ?= $(GOFLAGS:)
BUILD_NUMBER ?= $(BUILD_NUMBER:)
-ifeq ($(shell which godep), "")
+ifeq ($(shell which godep),)
GODEP=$(GOPATH)/bin/godep
else
GODEP=godep