From b3fdbd9566c72a0fc7bb7a1001355058690007c1 Mon Sep 17 00:00:00 2001 From: E <79379754+oech3@users.noreply.github.com> Date: Wed, 24 Sep 2025 00:43:54 +0900 Subject: [PATCH 1/2] Add manpages for HASHSUM_PROGS --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 76c20ed25..a10d9a53a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -398,13 +398,13 @@ distclean: clean ifeq ($(MANPAGES),y) manpages: build-coreutils mkdir -p $(BUILDDIR)/man/ - $(foreach prog, $(INSTALLEES), \ + $(foreach prog, $(INSTALLEES) $(HASHSUM_PROGS), \ $(BUILDDIR)/coreutils manpage $(prog) > $(BUILDDIR)/man/$(PROG_PREFIX)$(prog).1 $(newline) \ ) install-manpages: manpages mkdir -p $(DESTDIR)$(DATAROOTDIR)/man/man1 - $(foreach prog, $(INSTALLEES), \ + $(foreach prog, $(INSTALLEES) $(HASHSUM_PROGS), \ $(INSTALL) -m 644 $(BUILDDIR)/man/$(PROG_PREFIX)$(prog).1 $(DESTDIR)$(DATAROOTDIR)/man/man1/ $(newline) \ ) else From ccad0882bb3ac9ad5ae35f48fa04e3ca0119d70c Mon Sep 17 00:00:00 2001 From: E <79379754+oech3@users.noreply.github.com> Date: Wed, 24 Sep 2025 00:46:45 +0900 Subject: [PATCH 2/2] Check man1/md5sum.1 present --- .github/workflows/CICD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index a3f9af1e4..2b5dfb89d 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -321,7 +321,7 @@ jobs: # Check that the utils are present test -f /tmp/usr/local/bin/tty # Check that the manpage is present - test -f /tmp/usr/local/share/man/man1/whoami.1 + test -f /tmp/usr/local/share/man/man1/md5sum.1 # Check that the completion is present test -f /tmp/usr/local/share/zsh/site-functions/_install test -f /tmp/usr/local/share/bash-completion/completions/head