All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/8] package/bitcoin: depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
@ 2019-12-08 16:27 Fabrice Fontaine
  2019-12-08 16:27 ` [Buildroot] [PATCH 2/8] package/bitcoin: give a default value for BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS Fabrice Fontaine
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Fabrice Fontaine @ 2019-12-08 16:27 UTC (permalink / raw)
  To: buildroot

Obviously, bitcoin depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735, not on
BR2_TOOLCHAIN_HAS_GCC_BUG_64735

Fixes:
 - No autobuilder failure

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/bitcoin/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/bitcoin/Config.in b/package/bitcoin/Config.in
index 03e040d8f5..c6788d5f98 100644
--- a/package/bitcoin/Config.in
+++ b/package/bitcoin/Config.in
@@ -10,7 +10,7 @@ config BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
 config BR2_PACKAGE_BITCOIN
 	bool "bitcoin"
 	depends on BR2_INSTALL_LIBSTDCPP
-	depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
+	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
 	depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
 	select BR2_PACKAGE_BOOST
 	select BR2_PACKAGE_BOOST_SYSTEM
-- 
2.24.0

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-12-22 20:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-08 16:27 [Buildroot] [PATCH 1/8] package/bitcoin: depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 Fabrice Fontaine
2019-12-08 16:27 ` [Buildroot] [PATCH 2/8] package/bitcoin: give a default value for BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS Fabrice Fontaine
2019-12-08 16:27 ` [Buildroot] [PATCH 3/8] package/bitcoin: needs wchar Fabrice Fontaine
2019-12-08 16:27 ` [Buildroot] [PATCH 4/8] package/bitcoin: add host-pkgconf dependency Fabrice Fontaine
2019-12-08 16:27 ` [Buildroot] [PATCH 5/8] package/bitcoin: disable benchmarks Fabrice Fontaine
2019-12-08 16:27 ` [Buildroot] [PATCH 6/8] package/bitcoin: add optional libminiupnpc dependency Fabrice Fontaine
2019-12-08 16:27 ` [Buildroot] [PATCH 7/8] package/bitcoin: disable gui Fabrice Fontaine
2019-12-08 16:27 ` [Buildroot] [PATCH 8/8] package/bitcoin: add optional zeromq dependency Fabrice Fontaine
2019-12-08 21:50 ` [Buildroot] [PATCH 1/8] package/bitcoin: depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 Thomas Petazzoni
2019-12-22 20:23 ` Peter Korsgaard

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.