diff --git a/data/data/com.termux/files/home/test/containerd-1.4.3/Makefile b/Makefile index c0fecb9..dc7dae0 100644 --- a/data/data/com.termux/files/home/test/containerd-1.4.3/Makefile +++ b/Makefile @@ -20,8 +20,8 @@ ROOTDIR=$(dir $(abspath $(lastword $(MAKEFILE_LIST)))) DESTDIR ?= /usr/local # 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=v1.4.3.m +REVISION=269548fa27e0089a8b8278fc4fc781d7f65a939b.m PACKAGE=github.com/containerd/containerd SHIM_CGO_ENABLED ?= 0 @@ -69,7 +69,7 @@ RELEASE=containerd-$(VERSION:v%=%).${GOOS}-${GOARCH} PKG=github.com/containerd/containerd # Project binaries. -COMMANDS=ctr containerd containerd-stress +COMMANDS=ctr containerd containerd-stress containerd-shim containerd-shim-runc-v1 containerd-shim-runc-v2 MANPAGES=ctr.8 containerd.8 containerd-config.8 containerd-config.toml.5 ifdef BUILDTAGS @@ -226,7 +226,8 @@ man/ctr.8: FORCE man/%: docs/man/%.md FORCE @echo "$(WHALE) $@" - go-md2man -in "$<" -out "$@" + go build -o "bin/go-md2man" ./vendor/github.com/cpuguy83/go-md2man/v2 + bin/go-md2man -in "$<" -out "$@" define installmanpage mkdir -p $(DESTDIR)/man/man$(2);