diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-12-03 14:37:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-12-18 14:20:19 +0000 |
commit | 757e125e38cb0c2f523c6e629c60a7489a6ea333 (patch) | |
tree | f8d4e5a3f4dde6942f299c8556fc0b59809945d7 /meta/recipes-support | |
parent | 7fb0c1aa406347fa778548a8a76c9ab215a50874 (diff) | |
download | poky-757e125e38cb0c2f523c6e629c60a7489a6ea333.tar.gz |
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: 2d44aee1424d50949a8f38bc5b020d93804d5279)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 7e44275f4d286f005b2f19e3dcc9c6d390b98f30)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/serf/serf_1.3.9.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-support/serf/serf_1.3.9.bb b/meta/recipes-support/serf/serf_1.3.9.bb index 6a27f12102..2fbf96f997 100644 --- a/meta/recipes-support/serf/serf_1.3.9.bb +++ b/meta/recipes-support/serf/serf_1.3.9.bb | |||
@@ -30,4 +30,9 @@ EXTRA_OESCONS = " \ | |||
30 | OPENSSL="${STAGING_EXECPREFIXDIR}" \ | 30 | OPENSSL="${STAGING_EXECPREFIXDIR}" \ |
31 | " | 31 | " |
32 | 32 | ||
33 | # scons creates non-reproducible archives | ||
34 | do_install_append() { | ||
35 | rm ${D}/${libdir}/*.a | ||
36 | } | ||
37 | |||
33 | BBCLASSEXTEND = "native nativesdk" | 38 | BBCLASSEXTEND = "native nativesdk" |