summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-02-21 17:28:36 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-23 22:35:00 +0000
commit3c202cd8ce42b220e06e7408fa2bb60e1d54222d (patch)
treecfa54cb809b6dac3586c3e38ced702df79f2061c /meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch
parent3c2f8b750ab9c53773fb5a9a1a874e475740b4ee (diff)
downloadpoky-3c202cd8ce42b220e06e7408fa2bb60e1d54222d.tar.gz
nettle: Upgrade to 3.7.1
bugfix release [1] [1] https://lists.gnu.org/archive/html/info-gnu/2021-02/msg00011.html (From OE-Core rev: 28156e43673288ecfb9d43b1aecfd01256c71585) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch')
-rw-r--r--meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch b/meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch
deleted file mode 100644
index e3f5c6de7d..0000000000
--- a/meta/recipes-support/nettle/nettle-3.7/Add-target-to-only-build-tests-not-run-them.patch
+++ /dev/null
@@ -1,45 +0,0 @@
1Add target to only build tests (not run them)
2
3Not sending upstream as this is only a start of a solution to
4installable tests: It's useful for us already as is.
5
6Upstream-Status: Inappropriate [not a complete solution]
7
8Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9Refactored for 3.4
10Signed-off-by: Armin Kuster <akuster@mvista.com>
11---
12 Makefile.in | 3 +++
13 testsuite/Makefile.in | 2 ++
14 2 files changed, 5 insertions(+)
15
16diff --git a/Makefile.in b/Makefile.in
17index e5ccfc7..15c9275 100644
18--- a/Makefile.in
19+++ b/Makefile.in
20@@ -52,6 +52,9 @@ clean distclean mostlyclean maintainer-clean tags:
21 echo "Making $@ in $$d" ; (cd $$d && $(MAKE) $@); done
22 $(MAKE) $@-here
23
24+buildtest:
25+ echo "Making $@ in testsuite" ; (cd testsuite && $(MAKE) $@)
26+
27 check-here:
28 true
29
30diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in
31index 3f5e5f6..8fd68a3 100644
32--- a/testsuite/Makefile.in
33+++ b/testsuite/Makefile.in
34@@ -122,6 +122,8 @@ $(TARGETS) $(EXTRA_TARGETS): testutils.$(OBJEXT) ../nettle-internal.$(OBJEXT) \
35 # data.
36 VALGRIND = valgrind --error-exitcode=1 --leak-check=full --show-reachable=yes @IF_ASM@ --partial-loads-ok=yes
37
38+buildtest: $(TS_ALL)
39+
40 check: $(TS_ALL)
41 TEST_SHLIB_DIR="$(TEST_SHLIB_DIR)" \
42 srcdir="$(srcdir)" \
43--
442.17.1
45