From 8d376cb0241182ae4859db3aa7f790996054ae75 Mon Sep 17 00:00:00 2001 From: Evgenii Shatokhin Date: Wed, 11 Dec 2019 21:12:06 +0300 Subject: [PATCH] perf: skip xmlto validation Perf docs are built after all the kernels. To validate the xml files generated during that process, xmlto tries to get DTD files from the Net. If it fails, the whole build fails, which is unfortunate. Let us avoid this. Signed-off-by: Mikhail Novosyolov --- tools/perf/Documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/Documentation/Makefile b/tools/perf/Documentation/Makefile index 6e54979c2124..ccbc7a68769d 100644 --- a/tools/perf/Documentation/Makefile +++ b/tools/perf/Documentation/Makefile @@ -51,7 +51,7 @@ ASCIIDOC=asciidoc ASCIIDOC_EXTRA += --unsafe -f asciidoc.conf ASCIIDOC_HTML = xhtml11 MANPAGE_XSL = manpage-normal.xsl -XMLTO_EXTRA = +XMLTO_EXTRA = --skip-validation INSTALL?=install RM ?= rm -f DOC_REF = origin/man -- 2.25.1