diff mbox

[PATCH/next] glibc: remove unnecessary !BR2_sparc dependencies

Message ID 1471702321-31840-1-git-send-email-thomas.petazzoni@free-electrons.com
State Accepted
Commit 0b7bf72aa49b617494eb3250e97a69b61f21dff2
Headers show

Commit Message

Thomas Petazzoni Aug. 20, 2016, 2:12 p.m. UTC
The BR2_TOOLCHAIN_BUILDROOT_GLIBC option is already not selectable on
BR2_sparc, so there is no need to have an additional "depends on
!BR2_sparc" on each of the glibc versions.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/glibc/Config.in | 6 ------
 1 file changed, 6 deletions(-)

Comments

Peter Korsgaard Aug. 22, 2016, 8:46 p.m. UTC | #1
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > The BR2_TOOLCHAIN_BUILDROOT_GLIBC option is already not selectable on
 > BR2_sparc, so there is no need to have an additional "depends on
 > !BR2_sparc" on each of the glibc versions.

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Committed to next, thanks.
diff mbox

Patch

diff --git a/package/glibc/Config.in b/package/glibc/Config.in
index de95cb2..85aace6 100644
--- a/package/glibc/Config.in
+++ b/package/glibc/Config.in
@@ -12,20 +12,14 @@  choice
 
 config BR2_GLIBC_VERSION_2_22
 	bool "2.22"
-	# No support for pthread barriers on < v9 ISA
-	depends on !BR2_sparc
 	# Too old to build with gcc >= 6.x
 	depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_6
 
 config BR2_GLIBC_VERSION_2_23
 	bool "2.23"
-	# No support for pthread barriers on < v9 ISA
-	depends on !BR2_sparc
 
 config BR2_GLIBC_VERSION_2_24
 	bool "2.24"
-	# No support for pthread barriers on < v9 ISA
-	depends on !BR2_sparc
 	# Linux 3.2 or later kernel headers are required on all arches.
 	# See: https://sourceware.org/ml/libc-alpha/2016-08/msg00212.html
 	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2