mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.13.5 Regressions * xmlIO: Fix reading from non-regular files like pipes * xmlreader: Fix return value of xmlTextReaderReadString * parser: Fix loading of parameter entities in external DTDs * parser: Fix downstream code that swaps DTDs * parser: Fix detection of duplicate attributes * string: Fix va_copy fallback Bug fixes * xpath: Fix parsing of non-ASCII names (From OE-Core rev: c6dc275850d5a98803eee7d4712bb66b19051c82) Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
From 8c1054eacb430472068f21e4840749c384e8e866 Mon Sep 17 00:00:00 2001
|
|
From: Ross Burton <ross.burton@arm.com>
|
|
Date: Mon, 5 Dec 2022 17:02:32 +0000
|
|
Subject: [PATCH] add yocto-specific install-ptest target
|
|
|
|
Add a target to install the test suite.
|
|
|
|
Upstream-Status: Inappropriate
|
|
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
|
---
|
|
Makefile.am | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 4cb9a5c..8adcd7e 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -27,6 +27,16 @@ check_PROGRAMS = \
|
|
testparser \
|
|
testrecurse
|
|
|
|
+ptestdir=$(libexecdir)
|
|
+install-test-data: $(check_PROGRAMS)
|
|
+ install -d $(DESTDIR)$(ptestdir) $(DESTDIR)$(ptestdir)/python/
|
|
+ for T in $(check_PROGRAMS); do \
|
|
+ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$T $(DESTDIR)$(ptestdir) ;\
|
|
+ done
|
|
+ cp -r $(srcdir)/test $(DESTDIR)$(ptestdir)
|
|
+ cp -r $(srcdir)/result $(DESTDIR)$(ptestdir)
|
|
+ cp -r $(srcdir)/python/tests $(DESTDIR)$(ptestdir)/python
|
|
+
|
|
bin_PROGRAMS = xmllint xmlcatalog
|
|
|
|
bin_SCRIPTS = xml2-config
|