summaryrefslogtreecommitdiffstats
path: root/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2017-09-26 09:17:57 -0700
committerSaul Wold <sgw@linux.intel.com>2017-09-26 09:17:57 -0700
commit4fe91aacc358b690fae06a994001113213f1905b (patch)
tree5e0e29f6bf0ad70543cf8897ecaa3ef5a87060a8 /recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch
parenta98b71ccadc1458bf3a959e328d5ae814eb7e9b3 (diff)
downloadmeta-intel-qat-4fe91aacc358b690fae06a994001113213f1905b.tar.gz
Removal of meta-intel content to make meta-intel-qat standalone
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch')
-rw-r--r--recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch b/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch
new file mode 100644
index 0000000..06d706f
--- /dev/null
+++ b/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch
@@ -0,0 +1,31 @@
1From ed93d22846a1859ba3ab4584a1358b9325bf2e93 Mon Sep 17 00:00:00 2001
2From: Anuj Mittal <anujx.mittal@intel.com>
3Date: Tue, 23 Jun 2015 13:59:52 +0800
4Subject: [PATCH] openssl_qat: remove redundant rpaths
5
6Upstream-Status: Inappropriate [Configuration]
7
8This is not required and introduces bad rpath errors when
9building with bitbake.
10
11Signed-off-by: Anuj Mittal <anujx.mittal@intel.com>
12---
13 engines/qat_engine/Makefile | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/engines/qat_engine/Makefile b/engines/qat_engine/Makefile
17index 02cfd15..e96e66a 100644
18--- a/engines/qat_engine/Makefile
19+++ b/engines/qat_engine/Makefile
20@@ -99,7 +99,7 @@ endif
21 SRC=$(QATLIBSRC)
22 QATLIBTARGET=$(TOP)/libcrypto.a
23 ifdef ICP_BUILD_OUTPUT
24-QATSHAREDLIBDEPS=-Wl,-rpath,$(ICP_BUILD_OUTPUT) -L$(ICP_BUILD_OUTPUT) -l$(DRIVER)_s
25+QATSHAREDLIBDEPS=-L$(ICP_BUILD_OUTPUT) -l$(DRIVER)_s
26 else
27 QATSHAREDLIBDEPS=-l$(DRIVER)_s
28 endif
29--
301.7.9.5
31