Skip to content

Commit 8e67bd5

Browse files
Makefile fixes
1 parent 3bbfab1 commit 8e67bd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Makefile also tricks Travis into not running 'go get' for our
22
# build. See http://docs.travis-ci.com/user/languages/go/
33

4-
OBJDIR ?= ./bin
4+
OBJDIR ?= $(shell pwd)/bin
55
DESTDIR ?= /usr/local/bin
66
ARCHIVEDIR ?= /tmp
77

@@ -11,7 +11,7 @@ MAINTAINER ?= "Community"
1111

1212
CMDS = $(shell find ./cmd -maxdepth 1 -mindepth 1 -type d | grep -v testdata)
1313
CMD_BASENAMES = $(shell echo $(CMDS) | xargs -n1 basename)
14-
CMD_BINS = $(addprefix $(OBJDIR)/, $(CMD_BASENAMES) )
14+
CMD_BINS = $(addprefix bin/, $(CMD_BASENAMES) )
1515
OBJECTS = $(CMD_BINS)
1616

1717
# Build environment variables (referencing core/util.go)

0 commit comments

Comments
 (0)