diff options
author | Christophe PRIOUZEAU <christophe.priouzeau@st.com> | 2018-11-22 12:13:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-08 20:14:44 +0000 |
commit | 2b70fb6ff964d757bf8c35534b9fa77fe11038d9 (patch) | |
tree | a5461be23cc017297b68bdf46ceb2f8d15279fef /meta/recipes-connectivity | |
parent | 25f260f5937450de2e45e81e9a7a06411ab1c833 (diff) | |
download | poky-2b70fb6ff964d757bf8c35534b9fa77fe11038d9.tar.gz |
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)
(From OE-Core rev: 6a1c020008d334b56b94399a61ad1dc3a4817b36)
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.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>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl10_1.0.2p.bb | 6 |
1 files 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 4325940701..42f9bcfdcc 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 () { | |||
354 | for file in `find ${PKGD} -name *.h -o -name *.pc -o -name *.so`; do | 354 | for file in `find ${PKGD} -name *.h -o -name *.pc -o -name *.so`; do |
355 | rm $file | 355 | rm $file |
356 | done | 356 | done |
357 | rm ${PKGD}/usr/bin/openssl | 357 | rm ${PKGD}${bindir}/openssl |
358 | rm ${PKGD}/usr/bin/c_rehash | 358 | rm ${PKGD}${bindir}/c_rehash |
359 | rmdir ${PKGD}/usr/bin | 359 | rmdir ${PKGD}${bindir} |
360 | 360 | ||
361 | } | 361 | } |