Merge pull request #832 from justincormack/no-darwinian-shim

Only build shim on Linux
This commit is contained in:
Michael Crosby
2017-05-10 09:43:30 -07:00
committed by GitHub

View File

@@ -28,7 +28,7 @@ SNAPSHOT_PACKAGES=$(shell go list ./snapshot/...)
# Project binaries.
COMMANDS=ctr containerd protoc-gen-gogoctrd dist ctrd-protobuild
ifneq ("$(GOOS)", "windows")
ifeq ("$(GOOS)", "linux")
COMMANDS += containerd-shim
endif
BINARIES=$(addprefix bin/,$(COMMANDS))