blob: d7eedc406a1997c391ad1a0409ef111448f30d5d (
plain) (
tree)
|
|
From ecf430c2e1c6e070542e4b2425318febd5c97261 Mon Sep 17 00:00:00 2001
From: "A. Wilcox" <AWilcox@Wilcox-Tech.com>
Date: Wed, 8 Jan 2020 15:19:02 -0600
Subject: [PATCH] Documentation: Don't erase XMLTO_EXTRA contents
XMLTO_EXTRA is defined above, and then appended to if `asciidoctor` is
used to generate the manual pages. The second definition was clearing
the value of this variable, which caused builds with asciidoctor to
fail with:
```
[XMLTO] btrfs-ioctl.3
xmlto: /usr/src/packages/user/btrfs-progs/src/btrfs-progs-v5.4/Documentation/btrfs-ioctl.xml does not validate (status 3)
xmlto: Fix document syntax or use --skip-validation option
validity error : no DTD found!
Document /usr/src/packages/user/btrfs-progs/src/btrfs-progs-v5.4/Documentation/btrfs-ioctl.xml does not validate
make[1]: *** [Makefile:114: btrfs-ioctl.3] Error 13
```
Fixes: 669f56177 ("btrfs-progs: docs: use docbook5 backend for asciidoctor")
Signed-off-by: A. Wilcox <AWilcox@Wilcox-Tech.com>
---
Documentation/Makefile.in | 1 -
1 file changed, 1 deletion(-)
diff --git a/Documentation/Makefile.in b/Documentation/Makefile.in
index 0cc65398..d35cb858 100644
--- a/Documentation/Makefile.in
+++ b/Documentation/Makefile.in
@@ -66,7 +66,6 @@ ASCIIDOC_DEPS =
endif
MANPAGE_XSL = manpage-normal.xsl
-XMLTO_EXTRA =
INSTALL = @INSTALL@
RM = @RM@
RMDIR = @RMDIR@
--
2.24.1
|