mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
f3cfd39ac6
commit
5d10ff7e0f
@@ -353,8 +353,8 @@ openssl_package_preprocess () {
|
|||||||
for file in `find ${PKGD} -name *.h -o -name *.pc -o -name *.so`; do
|
for file in `find ${PKGD} -name *.h -o -name *.pc -o -name *.so`; do
|
||||||
rm $file
|
rm $file
|
||||||
done
|
done
|
||||||
rm ${PKGD}/usr/bin/openssl
|
rm ${PKGD}${bindir}/openssl
|
||||||
rm ${PKGD}/usr/bin/c_rehash
|
rm ${PKGD}${bindir}/c_rehash
|
||||||
rmdir ${PKGD}/usr/bin
|
rmdir ${PKGD}${bindir}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user