Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] trinity: fix Config.in depends on logic
@ 2016-10-30 12:51 Erico Nunes
  2016-10-30 15:42 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Erico Nunes @ 2016-10-30 12:51 UTC (permalink / raw)
  To: buildroot

The comment from trinity Config.in currently does not show up in
menuconfig for glibc or uClibc toolchains with older headers.
This commit fixes the logic so that it shows up when either one of the
dependencies from trinity are not met.

Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
---
 package/trinity/Config.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/trinity/Config.in b/package/trinity/Config.in
index 35b54d8..0ce1f9a 100644
--- a/package/trinity/Config.in
+++ b/package/trinity/Config.in
@@ -18,5 +18,5 @@ config BR2_PACKAGE_TRINITY
 
 comment "trinity needs a uClibc or glibc toolchain w/ headers >= 3.4"
 	depends on BR2_PACKAGE_TRINITY_ARCH_SUPPORTS
-	depends on BR2_TOOLCHAIN_USES_MUSL
-	depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
+	depends on BR2_TOOLCHAIN_USES_MUSL || \
+		!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
-- 
2.7.4

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

* [Buildroot] [PATCH 1/1] trinity: fix Config.in depends on logic
  2016-10-30 12:51 [Buildroot] [PATCH 1/1] trinity: fix Config.in depends on logic Erico Nunes
@ 2016-10-30 15:42 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2016-10-30 15:42 UTC (permalink / raw)
  To: buildroot

Hello,

On Sun, 30 Oct 2016 13:51:45 +0100, Erico Nunes wrote:
> The comment from trinity Config.in currently does not show up in
> menuconfig for glibc or uClibc toolchains with older headers.
> This commit fixes the logic so that it shows up when either one of the
> dependencies from trinity are not met.
> 
> Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
> ---
>  package/trinity/Config.in | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2016-10-30 15:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-30 12:51 [Buildroot] [PATCH 1/1] trinity: fix Config.in depends on logic Erico Nunes
2016-10-30 15:42 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox