[gnome-continuous-yocto/gnomeostree-3.22-krogoth: 215/246] openssl: fix add missing `make depend` command before `make` library



commit 98f3e83884421fa8a51d07a149603454faa2b0f9
Author: Andrej Valek <andrej valek siemens com>
Date:   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
    
    (From OE-Core rev: e3c251427a305780d3257a011260bd978de273d5)
    
    (From OE-Core rev: 11c388226399ec703f4f67ae7cf11c1e4e332710)
    
    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>
    Signed-off-by: Armin Kuster <akuster808 gmail com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 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 7b6a857..bf29676 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 \
@@ -152,6 +152,7 @@ do_compile_prepend_class-target () {
 }
 
 do_compile () {
+       oe_runmake depend
        oe_runmake
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]