diff options
author | Arnout Engelen <arnout@bzzt.net> | 2020-11-05 21:27:02 +0100 |
---|---|---|
committer | Simon McVittie <smcv@collabora.com> | 2021-12-17 12:54:28 +0000 |
commit | 91e0c5f0ccfdf5dd399c4dacea1f1f575546d6ff (patch) | |
tree | d97b60cb31111e33ab9293c84dfc1d053f7def5e | |
parent | 73aa7f9739fd79ec508b1d3efe2d599a1bc999d6 (diff) | |
download | dbus-91e0c5f0ccfdf5dd399c4dacea1f1f575546d6ff.tar.gz |
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)
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 97dfa9a6..44897a30 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 $< |