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

git at git.openembedded.org git at git.openembedded.org
Mon Dec 3 22:27:46 UTC 2018


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

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

commit 80a4518354dcd408abc9f7ab4d5748feaf5e9a5e
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}.
    
    Signed-off-by: Christophe Priouzeau <christophe.priouzeau at st.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-connectivity/openssl/openssl10_1.0.2q.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-connectivity/openssl/openssl10_1.0.2q.bb b/meta/recipes-connectivity/openssl/openssl10_1.0.2q.bb
index 8058b98..6518dac 100644
--- a/meta/recipes-connectivity/openssl/openssl10_1.0.2q.bb
+++ b/meta/recipes-connectivity/openssl/openssl10_1.0.2q.bb
@@ -353,8 +353,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