diff options
author | Christophe PRIOUZEAU <christophe.priouzeau@st.com> | 2018-11-22 12:13:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-05 12:37:02 +0000 |
commit | 5d10ff7e0f702329512df8d013c07a3a7ae12cde (patch) | |
tree | 70816cac9d6ea274d5a676aa21a2b5206ac576f6 | |
parent | f3cfd39ac6d4e19665f930a4e023d248ed5f9226 (diff) | |
download | poky-5d10ff7e0f702329512df8d013c07a3a7ae12cde.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)
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>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl10_1.0.2q.bb | 6 |
1 files 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 8058b98677..6518dac076 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 () { | |||
353 | for file in `find ${PKGD} -name *.h -o -name *.pc -o -name *.so`; do | 353 | for file in `find ${PKGD} -name *.h -o -name *.pc -o -name *.so`; do |
354 | rm $file | 354 | rm $file |
355 | done | 355 | done |
356 | rm ${PKGD}/usr/bin/openssl | 356 | rm ${PKGD}${bindir}/openssl |
357 | rm ${PKGD}/usr/bin/c_rehash | 357 | rm ${PKGD}${bindir}/c_rehash |
358 | rmdir ${PKGD}/usr/bin | 358 | rmdir ${PKGD}${bindir} |
359 | 359 | ||
360 | } | 360 | } |