From 98b01af03190e33c490926ca16f437c9cc707ade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Wed, 5 Apr 2023 19:32:14 +0200 Subject: [PATCH] Fix Makefile dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit validate-docs requires bin/skopeo; test-unit-local ctually doesn't. Signed-off-by: Miloslav Trmač --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 29792546..e7fea1a8 100644 --- a/Makefile +++ b/Makefile @@ -234,11 +234,11 @@ validate-local: # This invokes bin/skopeo, hence cannot be run as part of validate-local .PHONY: validate-docs -validate-docs: +validate-docs: bin/skopeo hack/man-page-checker hack/xref-helpmsgs-manpages -test-unit-local: bin/skopeo +test-unit-local: $(GO) test $(MOD_VENDOR) -tags "$(BUILDTAGS)" $$($(GO) list $(MOD_VENDOR) -tags "$(BUILDTAGS)" -e ./... | grep -v '^github\.com/containers/skopeo/\(integration\|vendor/.*\)$$') vendor: