[oe-commits] [openembedded-core] 77/92: openssl: correct bad path on package preprocess

git at git.openembedded.org git at git.openembedded.org
Tue Jan 8 20:20:35 UTC 2019


This is an automated email from the git hooks/post-receive script.

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

commit 6a1c020008d334b56b94399a61ad1dc3a4817b36
Author: Christophe PRIOUZEAU <christophe.priouzeau at st.com>
AuthorDate: Thu Nov 22 12:13:11 2018 +0000

    openssl: correct bad path on package preprocess
    
    In case of SDK generation, /usr/bin/ path are not correct
    and must be replaced by ${bindir}.
    
    (From OE-Core rev: 0fa7d99444763192914e798d8bc9dba1d9cdae42)
    
    Signed-off-by: Christophe Priouzeau <christophe.priouzeau at st.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/recipes-connectivity/openssl/openssl10_1.0.2p.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-connectivity/openssl/openssl10_1.0.2p.bb b/meta/recipes-connectivity/openssl/openssl10_1.0.2p.bb
index 4325940..42f9bcf 100644
--- a/meta/recipes-connectivity/openssl/openssl10_1.0.2p.bb
+++ b/meta/recipes-connectivity/openssl/openssl10_1.0.2p.bb
@@ -354,8 +354,8 @@ openssl_package_preprocess () {
         for file in `find ${PKGD} -name *.h -o -name *.pc -o -name *.so`; do
                 rm $file
         done
-        rm ${PKGD}/usr/bin/openssl
-        rm ${PKGD}/usr/bin/c_rehash
-        rmdir ${PKGD}/usr/bin
+        rm ${PKGD}${bindir}/openssl
+        rm ${PKGD}${bindir}/c_rehash
+        rmdir ${PKGD}${bindir}
 
 }

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


More information about the Openembedded-commits mailing list