[oe-commits] [openembedded-core] 21/51: openssl: fix add missing `make depend` command before `make` library

git at git.openembedded.org git at git.openembedded.org
Wed Aug 10 09:47:46 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit e3c251427a305780d3257a011260bd978de273d5
Author: Andrej Valek <andrej.valek at siemens.com>
AuthorDate: Fri Aug 5 13:16:33 2016 +0200

    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
    
    Signed-off-by: Andrej Valek <andrej.valek at siemens.com>
    Signed-off-by: Pascal Bach <pascal.bach at siemens.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-connectivity/openssl/openssl.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc
index 1a0031e..620673a 100644
--- a/meta/recipes-connectivity/openssl/openssl.inc
+++ b/meta/recipes-connectivity/openssl/openssl.inc
@@ -8,7 +8,7 @@ SECTION = "libs/network"
 LICENSE = "openssl"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f9a8f968107345e0b75aa8c2ecaa7ec8"
 
-DEPENDS = "hostperl-runtime-native"
+DEPENDS = "makedepend-native hostperl-runtime-native"
 DEPENDS_append_class-target = " openssl-native"
 
 SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \
@@ -149,6 +149,7 @@ do_compile_prepend_class-target () {
 }
 
 do_compile () {
+	oe_runmake depend
 	oe_runmake
 }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list