mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 09:29:40 +01:00
- Drop backported fix-CVE-2017-8872.patch, fix-CVE-2018-14404.patch and 0001-Fix-infinite-loop-in-LZMA-decompression.patch (From OE-Core rev: dc51f92b2a6f2439fa93b9b0c1d8c4c13e884813) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
From 395c0f53ec226aaabedb166e6b3a7f8590b95a5f Mon Sep 17 00:00:00 2001
|
|
From: Hongxu Jia <hongxu.jia@windriver.com>
|
|
Date: Sat, 11 May 2019 20:39:15 +0800
|
|
Subject: [PATCH] Make sure that Makefile doesn't try to compile these tests
|
|
again on the target where the source dependencies won't be available.
|
|
|
|
Upstream-Status: Inappropriate [cross-compile specific]
|
|
|
|
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
|
|
|
Rebase to 2.9.9
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
Makefile.am | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 8f4e43d..5edb930 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -211,8 +211,7 @@ install-ptest:
|
|
sed -i -e 's|^Makefile:|_Makefile:|' $(DESTDIR)/Makefile
|
|
$(MAKE) -C python install-ptest
|
|
|
|
-runtests: runtest$(EXEEXT) testrecurse$(EXEEXT) testapi$(EXEEXT) \
|
|
- testchar$(EXEEXT) testdict$(EXEEXT) runxmlconf$(EXEEXT)
|
|
+runtests:
|
|
[ -d test ] || $(LN_S) $(srcdir)/test .
|
|
[ -d result ] || $(LN_S) $(srcdir)/result .
|
|
$(CHECKER) ./runtest$(EXEEXT) && \
|
|
--
|
|
2.7.4
|
|
|