From 098a2b4f49caf6b0d199c5ea6fe035c1a910d035 Mon Sep 17 00:00:00 2001 From: lifubang Date: Wed, 18 Mar 2026 04:48:56 +0000 Subject: [PATCH] remove urfave_cli_no_docs from build tags After migrate from urfave/cli v1 (maintenance mode) to v3, we don't need this build tag anymore. Signed-off-by: lifubang --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b51269157..805da380c 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null) GIT_BRANCH_CLEAN := $(shell echo $(GIT_BRANCH) | sed -e "s/[^[:alnum:]]/-/g") RUNC_IMAGE := runc_dev$(if $(GIT_BRANCH_CLEAN),:$(GIT_BRANCH_CLEAN)) PROJECT := github.com/opencontainers/runc -BUILDTAGS := seccomp urfave_cli_no_docs libpathrs +BUILDTAGS := seccomp libpathrs # Tags prefixed with - in RUNC_BUILDTAGS are removed from BUILDTAGS; others are added. RUNC_BUILDTAGS ?= BUILDTAGS_REMOVE := $(patsubst -%,%,$(filter -%,$(RUNC_BUILDTAGS)))