summaryrefslogtreecommitdiff
path: root/user/btrfs-progs/asciidoctor-build.patch
blob: d7eedc406a1997c391ad1a0409ef111448f30d5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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