diff options
author | Ezequiel GarcĂa <ezequiel@vanguardiasur.com.ar> | 2015-02-17 13:26:56 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-19 22:04:26 +0100 |
commit | ccd5519d1a13f6f2fe5d6accf31dbfa2802e1a0b (patch) | |
tree | ba0fca3758acc7b670000be4d043da85b569c03b /package/glibc | |
parent | 8bc506a648542fc32b9e19bd2edbbc82a99643ac (diff) | |
download | buildroot-ccd5519d1a13f6f2fe5d6accf31dbfa2802e1a0b.tar.gz buildroot-ccd5519d1a13f6f2fe5d6accf31dbfa2802e1a0b.zip |
glibc: nios2: Prevent selecting unsupported versions
Versions previous to glibc v2.21 do not support the Nios-II architecture
so disable them.
Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/glibc')
-rw-r--r-- | package/glibc/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/glibc/Config.in b/package/glibc/Config.in index 3038b27d98..80014910b0 100644 --- a/package/glibc/Config.in +++ b/package/glibc/Config.in @@ -33,6 +33,7 @@ choice default BR2_GLIBC_VERSION_2_20 config BR2_GLIBC_VERSION_2_20 + depends on !BR2_nios2 bool "2.20" config BR2_GLIBC_VERSION_2_21 |