This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=fd9d626401c8cbef7a24534ac388335920d93416 commit fd9d626401c8cbef7a24534ac388335920d93416 Author: Guillem Jover <[email protected]> AuthorDate: Sat May 30 20:46:26 2020 +0200 build: Add man page number suffixes to the automake SUFFIXES variable Suffix rules need to know which suffixes are to be matched. List all the man page target suffixes for that to properly work. --- debian/changelog | 1 + man/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 30df7a1ba..47e513280 100644 --- a/debian/changelog +++ b/debian/changelog @@ -76,6 +76,7 @@ dpkg (1.20.1) UNRELEASED; urgency=medium - Use po4a mode=eof support in addenda. - Do not use make prerequisites on suffix rule definitions. Closes: #961850 + - Add man page number suffixes to the automake SUFFIXES variable. * Packaging: - Switch to debhelper compatibility level 13. - Remove debian/tmp prefix from manpages debhelper fragment files. diff --git a/man/Makefile.am b/man/Makefile.am index 5b7749d91..c4909af9a 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -193,7 +193,7 @@ clean-local-yes: update-po: $(PO4A_V) $(PO4A) $(PO4A_OPTS) --force $(srcdir)/po/po4a.cfg -SUFFIXES = .man +SUFFIXES = .man .1 .5 .7 .8 MANGEN_V = $(MANGEN_V_@AM_V@) MANGEN_V_ = $(MANGEN_V_@AM_DEFAULT_V@) -- Dpkg.Org's dpkg

