From 91e0c5f0ccfdf5dd399c4dacea1f1f575546d6ff Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Thu, 5 Nov 2020 21:27:02 +0100 Subject: [PATCH] docs: generate reproducible ids With this parameter, docbook will generate the same id's when generating the same docs. This is helpful to get bit-by-bit 'reproducible' output, which makes auditing the package easier. (cherry picked from commit 43e0188dbf6506f64150f3a9b2392e315b1bbdaf) --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 97dfa9a..44897a3 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -84,7 +84,7 @@ if DBUS_XML_DOCS_ENABLED html_DATA += $(XMLTO_HTML) %.html: %.xml - $(XMLTO) html-nochunks $< + $(XMLTO) --stringparam generate.consistent.ids=1 html-nochunks $< %.1: %.1.xml $(XMLTO) man $< -- 2.7.4