Skip to content

Commit 50d2dd5

Browse files
authored
Merge pull request #8721 from oech3/man-hasusum
Add missing manpages
2 parents 5287738 + ccad088 commit 50d2dd5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CICD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ jobs:
321321
# Check that the utils are present
322322
test -f /tmp/usr/local/bin/tty
323323
# Check that the manpage is present
324-
test -f /tmp/usr/local/share/man/man1/whoami.1
324+
test -f /tmp/usr/local/share/man/man1/md5sum.1
325325
# Check that the completion is present
326326
test -f /tmp/usr/local/share/zsh/site-functions/_install
327327
test -f /tmp/usr/local/share/bash-completion/completions/head

GNUmakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,13 +398,13 @@ distclean: clean
398398
ifeq ($(MANPAGES),y)
399399
manpages: build-coreutils
400400
mkdir -p $(BUILDDIR)/man/
401-
$(foreach prog, $(INSTALLEES), \
401+
$(foreach prog, $(INSTALLEES) $(HASHSUM_PROGS), \
402402
$(BUILDDIR)/coreutils manpage $(prog) > $(BUILDDIR)/man/$(PROG_PREFIX)$(prog).1 $(newline) \
403403
)
404404

405405
install-manpages: manpages
406406
mkdir -p $(DESTDIR)$(DATAROOTDIR)/man/man1
407-
$(foreach prog, $(INSTALLEES), \
407+
$(foreach prog, $(INSTALLEES) $(HASHSUM_PROGS), \
408408
$(INSTALL) -m 644 $(BUILDDIR)/man/$(PROG_PREFIX)$(prog).1 $(DESTDIR)$(DATAROOTDIR)/man/man1/ $(newline) \
409409
)
410410
else

0 commit comments

Comments
 (0)