ports/sysutils/containerd/files/patch-Makefile
Bernhard Froehlich 73cb22e55c
New port sysutils/containerd: Open and reliable container runtime
containerd is an industry-standard container runtime with an emphasis
on simplicity, robustness and portability. It is available as a daemon
for Linux and Windows, which can manage the complete container lifecycle
of its host system: image transfer and storage, container execution and
supervision, low-level storage and network attachments, etc.

WWW: https://containerd.io/

Thanks to Samuel Karp <me@samuelkarp.com> for working on the FreeBSD
support which is all upstream already!
2021-05-12 19:44:12 +00:00

13 lines
454 B
Text

--- Makefile.orig 2021-05-03 20:52:36 UTC
+++ Makefile
@@ -21,8 +21,8 @@ DESTDIR ?= /usr/local
TEST_IMAGE_LIST ?=
# Used to populate variables in version package.
-VERSION=$(shell git describe --match 'v[0-9]*' --dirty='.m' --always)
-REVISION=$(shell git rev-parse HEAD)$(shell if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi)
+VERSION?=unknown
+REVISION?=unknown
PACKAGE=github.com/containerd/containerd
SHIM_CGO_ENABLED ?= 0