mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
683ce6d95e
Switch to the ports asciidoc and stop using the bundled copy. This removes the Python 2 dependency required by the old embedded asciidoc. My proposal on ports@ from June suggested disabling the manual entirely, but we can keep it for now. If this change blocks future asciidoc updates, we can revisit and disable generation of the manual.
16 lines
406 B
Plaintext
16 lines
406 B
Plaintext
Allow use of external asciidoc instead of the embedded
|
|
copy which is Python 2 code.
|
|
|
|
Index: build/Doc.jam
|
|
--- build/Doc.jam.orig
|
|
+++ build/Doc.jam
|
|
@@ -8,7 +8,7 @@
|
|
# GNU General Public License version 2 or newer.
|
|
# See COPYING for details.
|
|
|
|
-ASCIIDOC = "$(TOP)/doc/asciidoc/asciidoc.py" ;
|
|
+ASCIIDOC ?= "$(TOP)/doc/asciidoc/asciidoc.py" ;
|
|
DOCDIR = "$(TOP)/doc" ;
|
|
MANUALDIR = "$(DOCDIR)/manual" ;
|
|
|