diff options
author | Andrej Valek <andrej.valek@siemens.com> | 2016-08-05 13:16:33 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-10 10:46:31 +0100 |
commit | 50c23e6c26a64b0c04e99abacb61ec00d1abace9 (patch) | |
tree | 0ee886510d0cd0a8cd82094d01ac74b242e47a4f /meta/recipes-connectivity/openssl/openssl.inc | |
parent | 17d728dede5ccc5c52c35452cb58e578ed648935 (diff) | |
download | poky-50c23e6c26a64b0c04e99abacb61ec00d1abace9.tar.gz |
openssl: fix add missing `make depend` command before `make` library
Settings from EXTRA_OECONF like en/disable no-ssl3, are transferred
only into DEPFLAGS. It means that settings have no effect on output files.
DEPFLAGS will be transferred into output files with make depend command.
https://wiki.openssl.org/index.php/Compilation_and_Installation#Dependencies
(From OE-Core rev: e3c251427a305780d3257a011260bd978de273d5)
Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl.inc')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc index 1a0031ea59..620673aa9a 100644 --- a/meta/recipes-connectivity/openssl/openssl.inc +++ b/meta/recipes-connectivity/openssl/openssl.inc | |||
@@ -8,7 +8,7 @@ SECTION = "libs/network" | |||
8 | LICENSE = "openssl" | 8 | LICENSE = "openssl" |
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f9a8f968107345e0b75aa8c2ecaa7ec8" | 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f9a8f968107345e0b75aa8c2ecaa7ec8" |
10 | 10 | ||
11 | DEPENDS = "hostperl-runtime-native" | 11 | DEPENDS = "makedepend-native hostperl-runtime-native" |
12 | DEPENDS_append_class-target = " openssl-native" | 12 | DEPENDS_append_class-target = " openssl-native" |
13 | 13 | ||
14 | SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \ | 14 | SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \ |
@@ -149,6 +149,7 @@ do_compile_prepend_class-target () { | |||
149 | } | 149 | } |
150 | 150 | ||
151 | do_compile () { | 151 | do_compile () { |
152 | oe_runmake depend | ||
152 | oe_runmake | 153 | oe_runmake |
153 | } | 154 | } |
154 | 155 | ||