diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2019-01-12 20:22:27 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-01-14 13:15:11 +1000 |
commit | a769fbfd402b149e4fee5ce65b26bae8c56b5d43 (patch) | |
tree | 78f718b1232f9870da20ec66d664fa16098a3ac6 | |
parent | b76dbb1159fb5d55bc0fd085bae0b5d3bc8dd1d8 (diff) | |
download | pacman-a769fbfd402b149e4fee5ce65b26bae8c56b5d43.tar.xz |
doc: keep manpages and html pages in sync
We forgot to add BUILDINFO to the list of html docs. Instead of always
updating things in two places, just derive the one from the other.
meson did not have this problem as it already derives both lists from
one template.
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | doc/Makefile.am | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 4bb0f01b..de87c409 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -20,19 +20,7 @@ MANPAGES = \ DOXYGEN_MANS = $(wildcard man3/*.3) -HTML_MANPAGES = \ - alpm-hooks.5.html \ - pacman.8.html \ - makepkg.8.html \ - makepkg-template.1.html \ - repo-add.8.html \ - vercmp.8.html \ - pkgdelta.8.html \ - pacman-key.8.html \ - PKGBUILD.5.html \ - makepkg.conf.5.html \ - pacman.conf.5.html \ - libalpm.3.html +HTML_MANPAGES = $(addsuffix .html,$(MANPAGES)) HTML_OTHER = \ index.html \ |