diff options
author | Daniel Kahn Gillmor <[email protected]> | 2025-02-08 04:52:04 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2025-02-12 08:55:45 +0000 |
commit | 503c9e3451d0b13004ab21aecd8054ac8dbe5650 (patch) | |
tree | f44912a97f10bd72b4de6fc1e2362da767845b7e | |
parent | gpg: Lookup key for merging/inserting only beu primary key. (diff) | |
download | gnupg-503c9e3451d0b13004ab21aecd8054ac8dbe5650.tar.gz gnupg-503c9e3451d0b13004ab21aecd8054ac8dbe5650.zip |
doc: Do not install gnupg.7.html into usr/share/man/manh/
* doc/Makefile.am: Ship gnupg.7.html with other html, not with
manpages.
--
Without this change, gnupg.7.html gets placed in /usr/share/manh/
Since it can't be correctly rendered by groff, this is undesirable.
Signed-off-by: Daniel Kahn Gillmor <[email protected]>
-rw-r--r-- | doc/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 6ce9819e5..35ea94b1d 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -93,9 +93,10 @@ myhtmlman_pages = \ gpgtar.1.html gpg-mail-tube.1.html \ applygnupgdefaults.8.html gpg-wks-client.1.html \ gpg-wks-server.1.html \ - dirmngr-client.1.html gpg-card.1.html gpg-check-pattern.1.html + dirmngr-client.1.html gpg-card.1.html gpg-check-pattern.1.html \ + gnupg.7.html -man_MANS = $(myman_pages) gnupg.7 gnupg.7.html +man_MANS = $(myman_pages) gnupg.7 watchgnupg_SOURCE = gnupg.texi @@ -103,7 +104,7 @@ watchgnupg_SOURCE = gnupg.texi CLEANFILES = mkdefsinc defs.inc DISTCLEANFILES = gnupg.tmp gnupg.ops yat2m-stamp.tmp yat2m-stamp \ - $(myman_pages) gnupg.7 gnupg.7.html $(myhtmlman_pages) + $(myman_pages) gnupg.7 $(myhtmlman_pages) mkdefsinc: mkdefsinc.c Makefile ../config.h $(CC_FOR_BUILD) -I. -I.. -I$(srcdir) $(AM_CPPFLAGS) \ @@ -148,7 +149,7 @@ yat2m-stamp: $(myman_sources) defs.inc @mv -f yat2m-stamp.tmp $@ -$(myman_pages) $(myhtmlman_pages) gnupg.7 gnupg.7.html : yat2m-stamp defs.inc +$(myman_pages) $(myhtmlman_pages) gnupg.7 : yat2m-stamp defs.inc @if test -f $@; then :; else \ trap 'rm -rf yat2m-stamp yat2m-lock' 1 2 13 15; \ if mkdir yat2m-lock 2>/dev/null; then \ |