diff options
author | Martin Ågren <martin.agren@gmail.com> | 2020-03-29 15:18:06 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-03-29 09:25:38 -0700 |
commit | 40b970078b3037c647fe8975724f55bbf63b8e9a (patch) | |
tree | b98ed50471057df6f8a42d05ffd3f7e71539dd41 /Documentation/Makefile | |
parent | def3ce00aebc3d30df34393518a38f334875a4c3 (diff) | |
download | git-40b970078b3037c647fe8975724f55bbf63b8e9a.tar.gz |
Doc: drop support for docbook-xsl before 1.72.0
docbook-xsl 1.72.0 is thirteen years old. Drop the ASCIIDOC_ROFF knob
which was needed to support 1.68.1 - 1.71.1. The next commit will
increase the required/assumed version further.
Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index c7b805d1ee..c7a8fc99cf 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -151,21 +151,13 @@ endif # # For docbook-xsl ... -# -1.71.0, not supported -# 1.71.1, set ASCIIDOC_ROFF? +# -1.71.1, not supported # 1.72.0, set DOCBOOK_XSL_172. # 1.73.0-, no extra settings are needed # ifdef DOCBOOK_XSL_172 -ASCIIDOC_EXTRA += -a git-asciidoc-no-roff MANPAGE_XSL = manpage-1.72.xsl -else - ifndef ASCIIDOC_ROFF - # docbook-xsl after 1.72 needs the regular XSL, but will not - # pass-thru raw roff codes from asciidoc.conf, so turn them off. - ASCIIDOC_EXTRA += -a git-asciidoc-no-roff - endif endif ifndef NO_MAN_BOLD_LITERAL XMLTO_EXTRA += -m manpage-bold-literal.xsl |