diff options
author | Ingo Klöcker <[email protected]> | 2024-09-17 12:30:57 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2024-09-17 12:30:57 +0000 |
commit | e4b04ae15363ee8b2159dbc2586fbf93792598f6 (patch) | |
tree | a70f9ee4450e879d801ab0e0f589dc181ca99106 /doc | |
parent | doc: Provide a man page for gpgme-json. (diff) | |
download | gpgme-e4b04ae15363ee8b2159dbc2586fbf93792598f6.tar.gz gpgme-e4b04ae15363ee8b2159dbc2586fbf93792598f6.zip |
doc,build: Fix "make install" if yat2m isn't available
* configure.ac: Add hint for YAT2M variable. Set HAVE_YAT2M if yat2m was
found.
* doc/Makefile.am (myman_pages): Set to empty string if yat2m isn't
available
--
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index cee802d5..584a6f85 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -31,7 +31,11 @@ BUILT_SOURCES = defsincdate defs.inc YAT2M_OPTIONS = -I $(srcdir) --release "GPGME @PACKAGE_VERSION@" myman_sources = gpgme-json.texi +if HAVE_YAT2M myman_pages = gpgme-json.1 +else +myman_pages = +endif man_MANS = $(myman_pages) |