summaryrefslogtreecommitdiffstats
path: root/common/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch
diff options
context:
space:
mode:
authorRahul Kumar Gupta <rahul.kumarxx.gupta@intel.com>2016-10-18 23:22:33 +0800
committerSaul Wold <sgw@linux.intel.com>2016-10-18 12:02:22 -0700
commit9a0fe0a702080e63a18677c7e6337be78cad62dc (patch)
treeb5404ed0396b441f3ecd660b39d987c8579c6542 /common/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch
parentb7747142dc46c14ced422d992d38c612a54b765c (diff)
downloadmeta-intel-9a0fe0a702080e63a18677c7e6337be78cad62dc.tar.gz
openssl-qat: move recipe from meta-isg to common
Since there is plan to merge meta-isg layer to common meta-intel layer. So relocate openssl-qat v0.4.9-009 recipe from meta-isg layer to common meta-intel layer. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'common/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch')
-rw-r--r--common/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/common/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch b/common/recipes-extended/openssl-qat/openssl-qat/openssl_qat-remove-redundant-rpaths.patch
new file mode 100644
index 00000000..06d706fd
--- /dev/null
+++ b/common/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