mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 15:32:27 +02:00
serf: do not install the static library
scons is using host ar to create it, which may or may not be built with reproducible option by default. Rather than patch scons for the benefit of a single recipe, let's just not install the .a, which is unused anyway. (From OE-Core rev: 7e44275f4d286f005b2f19e3dcc9c6d390b98f30) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
36a5e989e5
commit
9b6e9e34c9
@@ -30,4 +30,9 @@ EXTRA_OESCONS = " \
|
||||
OPENSSL="${STAGING_EXECPREFIXDIR}" \
|
||||
"
|
||||
|
||||
# scons creates non-reproducible archives
|
||||
do_install_append() {
|
||||
rm ${D}/${libdir}/*.a
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
Reference in New Issue
Block a user