From dac5873314581786630466741074c1e3af61b2b4 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Tue, 19 Apr 2022 11:03:45 +0200 Subject: [PATCH] package/expat: disable examples, tests and xmlwf Disable examples and tests (enabled by default) through --without-{examples,tests} which are available since version 2.2.7 and https://github.com/libexpat/libexpat/commit/1fdfd8a1b490f8ac9e7e11896298e41cc210d87d Also disable xmlwf (a binary that determines if an XML document is well-formed) through --without-xmlwf which is available since version 2.2.4 and https://github.com/libexpat/libexpat/commit/9d950527a07783c104aada685384edf3f8f23f8a This will fix the following build failure on riscv64: ERROR: reloc type R_RISCV_SET6 unsupported in this context Fixes: - http://autobuild.buildroot.org/results/99890c9c7ebe3266dd533c81352a3cbcf4d3d738 Signed-off-by: Fabrice Fontaine Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/expat/expat.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/expat/expat.mk b/package/expat/expat.mk index b29b0e1d26..92a3bfda8e 100644 --- a/package/expat/expat.mk +++ b/package/expat/expat.mk @@ -15,8 +15,9 @@ EXPAT_LICENSE_FILES = COPYING EXPAT_CPE_ID_VENDOR = libexpat_project EXPAT_CPE_ID_PRODUCT = libexpat -EXPAT_CONF_OPTS = --without-docbook -HOST_EXPAT_CONF_OPTS = --without-docbook +EXPAT_CONF_OPTS = \ + --without-docbook --without-examples --without-tests --without-xmlwf +HOST_EXPAT_CONF_OPTS = --without-docbook --without-examples --without-tests $(eval $(autotools-package)) $(eval $(host-autotools-package))