summaryrefslogtreecommitdiffstats
path: root/recipes-extended/openssl-qat/openssl-qat/openssl_qat-environment-variables-to-have-precedence.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-environment-variables-to-have-precedence.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-environment-variables-to-have-precedence.patch')
-rw-r--r--recipes-extended/openssl-qat/openssl-qat/openssl_qat-environment-variables-to-have-precedence.patch59
1 files changed, 59 insertions, 0 deletions
diff --git a/recipes-extended/openssl-qat/openssl-qat/openssl_qat-environment-variables-to-have-precedence.patch b/recipes-extended/openssl-qat/openssl-qat/openssl_qat-environment-variables-to-have-precedence.patch
new file mode 100644
index 0000000..82c9965
--- /dev/null
+++ b/recipes-extended/openssl-qat/openssl-qat/openssl_qat-environment-variables-to-have-precedence.patch
@@ -0,0 +1,59 @@
1From dde5f7d6603d875b1d871498ae95a6837ccd591d Mon Sep 17 00:00:00 2001
2From: Anuj Mittal <anujx.mittal@intel.com>
3Date: Sat, 20 Jun 2015 00:25:27 +0800
4Subject: [PATCH] openssl_qat: environment variables to have precedence
5
6Upstream-Status: Inappropriate [configuration]
7
8(From meta/recipes-connectivity/openssl/openssl/shared-libs.patch
9 rev: 5dd1d7566964c90d33c0c44f569d9336fb0724ce)
10
11Signed-off-by: Anuj Mittal <anujx.mittal@intel.com>
12---
13 Makefile.org | 2 +-
14 crypto/Makefile | 2 +-
15 ssl/Makefile | 2 +-
16 3 files changed, 3 insertions(+), 3 deletions(-)
17
18diff --git a/Makefile.org b/Makefile.org
19index 1f2f5e1..679c884 100644
20--- a/Makefile.org
21+++ b/Makefile.org
22@@ -311,7 +311,7 @@ libcrypto$(SHLIB_EXT): libcrypto.a fips_premain_dso$(EXE_EXT)
23
24 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
25 @if [ "$(SHLIB_TARGET)" != "" ]; then \
26- $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
27+ $(MAKE) -e SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
28 else \
29 echo "There's no support for shared libraries on this platform" >&2; \
30 exit 1; \
31diff --git a/crypto/Makefile b/crypto/Makefile
32index 2355661..1b0c324 100644
33--- a/crypto/Makefile
34+++ b/crypto/Makefile
35@@ -107,7 +107,7 @@ $(LIB): $(LIBOBJ)
36
37 shared: buildinf.h lib subdirs
38 if [ -n "$(SHARED_LIBS)" ]; then \
39- (cd ..; $(MAKE) $(SHARED_LIB)); \
40+ (cd ..; $(MAKE) -e $(SHARED_LIB)); \
41 fi
42
43 libs:
44diff --git a/ssl/Makefile b/ssl/Makefile
45index e05ada2..6f51862 100644
46--- a/ssl/Makefile
47+++ b/ssl/Makefile
48@@ -64,7 +64,7 @@ lib: $(LIBOBJ)
49
50 shared: lib
51 if [ -n "$(SHARED_LIBS)" ]; then \
52- (cd ..; $(MAKE) $(SHARED_LIB)); \
53+ (cd ..; $(MAKE) -e $(SHARED_LIB)); \
54 fi
55
56 files:
57--
581.7.9.5
59