From: Fabrice Fontaine Date: Sun, 8 Dec 2019 16:27:18 +0000 (+0100) Subject: package/bitcoin: depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbdd4cd815d7b6689bf5b4161622f7f926f45fd3;p=buildroot.git package/bitcoin: depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 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 Signed-off-by: Thomas Petazzoni --- 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