Fix static builds
The runc symlink is only created when building non-static builds, so it might be missing when building static builds. Fix this. Signed-off-by: Ido Yariv <ido@wizery.com>
This commit is contained in:
parent
8e129e0972
commit
8f250ceb47
10
Makefile
10
Makefile
|
@ -11,15 +11,15 @@ export GOPATH:=$(CURDIR)/Godeps/_workspace:$(GOPATH)
|
|||
|
||||
.PHONY=dbuild
|
||||
|
||||
all:
|
||||
ifneq ($(RUNC_LINK), $(wildcard $(RUNC_LINK)))
|
||||
ln -sfn $(CURDIR) $(RUNC_LINK)
|
||||
endif
|
||||
all: $(RUNC_LINK)
|
||||
go build -ldflags "-X main.gitCommit=${COMMIT}" -tags "$(BUILDTAGS)" -o runc .
|
||||
|
||||
static:
|
||||
static: $(RUNC_LINK)
|
||||
CGO_ENABLED=1 go build -tags "$(BUILDTAGS) cgo static_build" -ldflags "-w -extldflags -static -X main.gitCommit=${COMMIT}" -o runc .
|
||||
|
||||
$(RUNC_LINK):
|
||||
ln -sfn $(CURDIR) $(RUNC_LINK)
|
||||
|
||||
lint:
|
||||
go vet ./...
|
||||
go fmt ./...
|
||||
|
|
Loading…
Reference in New Issue