diff options
-rw-r--r-- | meta-oe/recipes-crypto/botan/botan_2.13.0.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-oe/recipes-crypto/botan/botan_2.13.0.bb b/meta-oe/recipes-crypto/botan/botan_2.13.0.bb index 0854bd6728..4143264b44 100644 --- a/meta-oe/recipes-crypto/botan/botan_2.13.0.bb +++ b/meta-oe/recipes-crypto/botan/botan_2.13.0.bb | |||
@@ -19,14 +19,15 @@ CPU_armv7ve = "armv7" | |||
19 | 19 | ||
20 | do_configure() { | 20 | do_configure() { |
21 | python3 ${S}/configure.py \ | 21 | python3 ${S}/configure.py \ |
22 | --prefix="${D}${prefix}" \ | 22 | --prefix="${D}${exec_prefix}" \ |
23 | --libdir="${D}${libdir}" \ | ||
23 | --cpu="${CPU}" \ | 24 | --cpu="${CPU}" \ |
24 | --cc-bin="${CXX}" \ | 25 | --cc-bin="${CXX}" \ |
25 | --cxxflags="${CXXFLAGS}" \ | 26 | --cxxflags="${CXXFLAGS}" \ |
26 | --ldflags="${LDFLAGS}" \ | 27 | --ldflags="${LDFLAGS}" \ |
27 | --with-endian=${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', 'little', 'big', d)} \ | 28 | --with-endian=${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', 'little', 'big', d)} \ |
28 | ${@bb.utils.contains("TUNE_FEATURES","neon","","--disable-neon",d)} \ | 29 | ${@bb.utils.contains("TUNE_FEATURES","neon","","--disable-neon",d)} \ |
29 | --with-sysroot-dir=${STAGING_DIR_TARGET} \ | 30 | --with-sysroot-dir=${STAGING_DIR_HOST} \ |
30 | --with-build-dir="${B}" \ | 31 | --with-build-dir="${B}" \ |
31 | --optimize-for-size \ | 32 | --optimize-for-size \ |
32 | --with-stack-protector \ | 33 | --with-stack-protector \ |