summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRahul Kumar Gupta <rahul.kumarxx.gupta@intel.com>2016-03-31 02:55:11 +0800
committerSaul Wold <sgw@linux.intel.com>2016-03-30 16:18:11 -0700
commita54c2107b3220f5cc655d4d9cdd802005565281d (patch)
treeeaf22fb849976488ca7bf23eb3b14eab67946ba1
parentdcfd63ce736d22cb95ec90bfe62116e01b4d306d (diff)
downloadmeta-intel-a54c2107b3220f5cc655d4d9cdd802005565281d.tar.gz
meta-isg: openssl-qat: fix configure and compilation
'disable-static' option is there in EXTRA_OECONF variable. No such option is supported by configure script. So better to pass required option directly without using variable. This recipe currently relies on EXTRA_OEMAKE having been set to "-e MAKEFLAGS=" in bitbake.conf to operate. It is necessary to make this explicit so that the default in bitbake.conf can be changed. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r--meta-isg/common/recipes-extended/openssl-qat/openssl-qat.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-isg/common/recipes-extended/openssl-qat/openssl-qat.inc b/meta-isg/common/recipes-extended/openssl-qat/openssl-qat.inc
index 8eb85583..8f6be090 100644
--- a/meta-isg/common/recipes-extended/openssl-qat/openssl-qat.inc
+++ b/meta-isg/common/recipes-extended/openssl-qat/openssl-qat.inc
@@ -30,7 +30,7 @@ PACKAGES =+ "${PN}-misc"
30PARALLEL_MAKE = "" 30PARALLEL_MAKE = ""
31 31
32AR_append = " r" 32AR_append = " r"
33EXTRA_OECONF = " -no-ssl3" 33EXTRA_OEMAKE = "-e MAKEFLAGS="
34 34
35export ICP_ROOT = "${WORKDIR}/git" 35export ICP_ROOT = "${WORKDIR}/git"
36export ICP_BUILD_OUTPUT = "${STAGING_DIR_TARGET}" 36export ICP_BUILD_OUTPUT = "${STAGING_DIR_TARGET}"
@@ -65,7 +65,7 @@ do_configure () {
65 os=linux 65 os=linux
66 target=linux-x86_64 66 target=linux-x86_64
67 67
68 ./Configure ${EXTRA_OECONF} enable-hw-qat --prefix=$OPENSSL_PREFIX --openssldir="${OPENSSL_PREFIX}${base_libdir}/ssl" --libdir="${base_libdir}" $target 68 ./Configure -no-ssl3 enable-hw-qat --prefix=$OPENSSL_PREFIX --openssldir="${OPENSSL_PREFIX}${base_libdir}/ssl" --libdir="${base_libdir}" $target
69} 69}
70 70
71do_compile() { 71do_compile() {