1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From: Philip Hands <phil@hands.com>
Date: Wed, 6 Aug 2025 21:20:27 +0200
Subject: openqa-cli lost its pod, so drop manpage creation
Also, there's no need for openqa-client's manpage now that we've stopped
includng it in the package.
The openqa-cli man page situation should be fixed.
---
Makefile | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index f57e4a1..59382c1 100644
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,7 @@ help:
@sed -n 's/\(^[^.#[:space:]A-Z]*\):.*$$/\1/p' Makefile | uniq
@echo See docs/Contributing.asciidoc for more details
-man_names = openqa-cli openqa-client openqa-load-templates openqa-dump-templates openqa-clone-job openqa-validate-yaml openqa-label-all
+man_names = openqa-load-templates openqa-dump-templates openqa-clone-job openqa-validate-yaml openqa-label-all
manpages = $(addprefix $(man_dir)/,$(addsuffix .1,$(man_names)))
man_dir = build/man1
@@ -82,9 +82,6 @@ $(man_dir)/openqa-%.1 $(man_dir)/%.1: script/%
$(man_dir)/openqa-%-templates.1: script/%_templates
$(run-pod2man)
-$(man_dir)/openqa-cli.1: lib/OpenQA/CLI.pm
- $(run-pod2man)
-
.PHONY: build-manpages
build-manpages: $(man_dir) $(manpages)
|