diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-08-15 15:58:53 -0700 |
---|---|---|
committer | Armin Kuster <akuster@mvista.com> | 2025-04-16 20:30:23 -0400 |
commit | 9ae36f125b9bef160bd7106f871a63eada61db98 (patch) | |
tree | b02305066980533aa827bc2663fa3787cca35fba | |
parent | 0242b8f2bd1feebc2f5f79e4f29842088b30c098 (diff) | |
download | meta-openembedded-9ae36f125b9bef160bd7106f871a63eada61db98.tar.gz |
botan: Make it reproducible
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Armin Kuster <akuster@mvista.com>
-rw-r--r-- | meta-oe/recipes-crypto/botan/botan_3.2.0.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-oe/recipes-crypto/botan/botan_3.2.0.bb b/meta-oe/recipes-crypto/botan/botan_3.2.0.bb index 5eff2d383e..1fdda65a05 100644 --- a/meta-oe/recipes-crypto/botan/botan_3.2.0.bb +++ b/meta-oe/recipes-crypto/botan/botan_3.2.0.bb | |||
@@ -18,8 +18,8 @@ CPU:armv7ve = "armv7" | |||
18 | 18 | ||
19 | do_configure() { | 19 | do_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 | } |
41 | do_install() { | 41 | do_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 | ||
46 | PACKAGES += "${PN}-python3" | 46 | PACKAGES += "${PN}-python3" |