From 1d1c2576384590ecc8ba88342127d8387ce01c7c Mon Sep 17 00:00:00 2001 From: Jaimos Skriletz Date: Sat, 2 Dec 2023 18:49:12 -0700 Subject: [PATCH] Don't use google fonts when building html doc. Asciidoctor uses google fonts in its html documentation, which makes the html files not fully usable offline. This triggered a warning in lintian which would prefer all docs are fully ofline and don't download stuff automatically. This disables the webfonts from the html generation, so the html files are viewed the same offline and no longer automatically download google's webfonts. --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 992110023..2f540ee38 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -58,6 +58,6 @@ $(html_MANS): $(SECTION_FILES) "$(ASCIIDOC)" -b manpage -a "$(patsubst %.1,%,$@)" "$<" -o "$@" %.html: %.adoc - "$(ASCIIDOC)" -b html5 -a toc -a "$(patsubst %.html,%,$@)" "$<" -o "$@" + "$(ASCIIDOC)" -b html5 -a toc -a webfonts! -a "$(patsubst %.html,%,$@)" "$<" -o "$@" endif