From: Michael Nosthoff via buildroot <buildroot@lists.buildroot.org>
To: buildroot@buildroot.org
Cc: Michael Nosthoff <buildroot@heine.tech>
Subject: [Buildroot] [PATCH] package/botan: fix boost dependency
Date: Tue, 14 Sep 2021 15:50:57 +0200 [thread overview]
Message-ID: <20210914135059.87663-1-buildroot@heine.tech> (raw)
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@heine.tech>
---
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 c23aba99dd..2d4d11bd71 100644
--- a/package/botan/botan.mk
+++ b/package/botan/botan.mk
@@ -50,7 +50,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
--
2.33.0
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next reply other threads:[~2021-09-14 13:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-14 13:50 Michael Nosthoff via buildroot [this message]
2021-09-18 20:08 ` [Buildroot] [PATCH] package/botan: fix boost dependency Yann E. MORIN
2021-09-29 19:34 ` Peter Korsgaard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210914135059.87663-1-buildroot@heine.tech \
--to=buildroot@lists.buildroot.org \
--cc=buildroot@buildroot.org \
--cc=buildroot@heine.tech \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.