summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2024-08-15 15:58:53 -0700
committerKhem Raj <raj.khem@gmail.com>2024-08-15 23:20:05 -0700
commit6bff9188c78e001248c92b07a7c0502501ff16d4 (patch)
tree3ac904183c49117825cade392d87c09b14640110
parent0d6f463f020b70f4ed32ac15528df6665f350aef (diff)
downloadmeta-openembedded-6bff9188c78e001248c92b07a7c0502501ff16d4.tar.gz
botan: Make it reproducible
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-crypto/botan/botan_3.5.0.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-oe/recipes-crypto/botan/botan_3.5.0.bb b/meta-oe/recipes-crypto/botan/botan_3.5.0.bb
index d0e9d3e109..3a40680a45 100644
--- a/meta-oe/recipes-crypto/botan/botan_3.5.0.bb
+++ b/meta-oe/recipes-crypto/botan/botan_3.5.0.bb
@@ -18,8 +18,8 @@ CPU:armv7ve = "armv7"
18 18
19do_configure() { 19do_configure() {
20 python3 ${S}/configure.py \ 20 python3 ${S}/configure.py \
21 --prefix="${D}${exec_prefix}" \ 21 --prefix="${exec_prefix}" \
22 --libdir="${D}${libdir}" \ 22 --libdir="${libdir}" \
23 --cpu="${CPU}" \ 23 --cpu="${CPU}" \
24 --cc-bin="${CXX}" \ 24 --cc-bin="${CXX}" \
25 --cxxflags="${CXXFLAGS}" \ 25 --cxxflags="${CXXFLAGS}" \
@@ -39,8 +39,8 @@ do_compile() {
39 oe_runmake 39 oe_runmake
40} 40}
41do_install() { 41do_install() {
42 oe_runmake install 42 oe_runmake DESTDIR=${D} install
43 sed -i -e "s|${D}||g" ${D}${libdir}/pkgconfig/botan-3.pc 43 sed -i -e 's|${WORKDIR}|<scrubbed>|g' ${D}${includedir}/botan-3/botan/build.h
44} 44}
45 45
46PACKAGES += "${PN}-python3" 46PACKAGES += "${PN}-python3"