summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-crypto/botan/botan_3.2.0.bb8
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
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"