[Buildroot] [git commit] package/botan: fix boost dependency

Yann E. MORIN yann.morin.1998 at free.fr
Sat Sep 18 20:08:16 UTC 2021


commit: https://git.buildroot.net/buildroot/commit/?id=5572b2e53157db2958be2c52f4e7c2a1b0408d78
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

only build --with-boost when both required modules (filesystem and system) are
also selected.

Fixes:
http://autobuild.buildroot.net/results/4fbf2a63f9ddfbc540ce7dabd10964b311477c06

Signed-off-by: Michael Nosthoff <buildroot at heine.tech>
Signed-off-by: Yann E. MORIN <yann.morin.1998 at free.fr>
---
 package/botan/botan.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/botan/botan.mk b/package/botan/botan.mk
index 0ac528c990..36aca6d93e 100644
--- a/package/botan/botan.mk
+++ b/package/botan/botan.mk
@@ -53,7 +53,7 @@ ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
 BOTAN_CONF_OPTS += --without-os-feature=getauxval
 endif
 
-ifeq ($(BR2_PACKAGE_BOOST),y)
+ifeq ($(BR2_PACKAGE_BOOST_FILESYSTEM)$(BR2_PACKAGE_BOOST_SYSTEM),yy)
 BOTAN_DEPENDENCIES += boost
 BOTAN_CONF_OPTS += --with-boost
 endif


More information about the buildroot mailing list