summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/nettle/nettle-3.7/dlopen-test.patch
blob: ab9b91f88bc53dc98871b47bc4a69ff981ead2ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Remove the relative path for libnettle.so so the test
program can find it.
Relative paths are not suitable, as the folder strucure for ptest
is different from the one expected by the nettle testsuite.

Upstream-Status: Inappropriate [embedded specific]

Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 testsuite/dlopen-test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testsuite/dlopen-test.c b/testsuite/dlopen-test.c
index 4265bf7..1a25d17 100644
--- a/testsuite/dlopen-test.c
+++ b/testsuite/dlopen-test.c
@@ -15,7 +15,7 @@ int
 main (int argc UNUSED, char **argv UNUSED)
 {
 #if HAVE_LIBDL
-  void *handle = dlopen ("../libnettle." SO_EXT, RTLD_NOW);
+  void *handle = dlopen ("libnettle.so", RTLD_NOW);
   int (*get_version)(void);
   if (!handle)
     {
-- 
2.17.1