mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00

meta-dpdk / meta-qat: * Move content from meta-intel/common * Create new basic README/LICENSE files from meta-intel * Create new layer.conf files * Fill out the maintainers files meta-intel: * update the maintainers files * bump the meta-intel layer version * add layer recommend No other content changes made in this commit. Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
32 lines
945 B
Diff
32 lines
945 B
Diff
From ed93d22846a1859ba3ab4584a1358b9325bf2e93 Mon Sep 17 00:00:00 2001
|
|
From: Anuj Mittal <anujx.mittal@intel.com>
|
|
Date: Tue, 23 Jun 2015 13:59:52 +0800
|
|
Subject: [PATCH] openssl_qat: remove redundant rpaths
|
|
|
|
Upstream-Status: Inappropriate [Configuration]
|
|
|
|
This is not required and introduces bad rpath errors when
|
|
building with bitbake.
|
|
|
|
Signed-off-by: Anuj Mittal <anujx.mittal@intel.com>
|
|
---
|
|
engines/qat_engine/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/engines/qat_engine/Makefile b/engines/qat_engine/Makefile
|
|
index 02cfd15..e96e66a 100644
|
|
--- a/engines/qat_engine/Makefile
|
|
+++ b/engines/qat_engine/Makefile
|
|
@@ -99,7 +99,7 @@ endif
|
|
SRC=$(QATLIBSRC)
|
|
QATLIBTARGET=$(TOP)/libcrypto.a
|
|
ifdef ICP_BUILD_OUTPUT
|
|
-QATSHAREDLIBDEPS=-Wl,-rpath,$(ICP_BUILD_OUTPUT) -L$(ICP_BUILD_OUTPUT) -l$(DRIVER)_s
|
|
+QATSHAREDLIBDEPS=-L$(ICP_BUILD_OUTPUT) -l$(DRIVER)_s
|
|
else
|
|
QATSHAREDLIBDEPS=-l$(DRIVER)_s
|
|
endif
|
|
--
|
|
1.7.9.5
|
|
|