Merge pull request #8721 from oech3/man-hasusum

Add missing manpages
This commit is contained in:
Sylvestre Ledru
2025-09-23 19:10:57 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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