diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2011-01-03 01:15:30 +0100 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2011-01-03 01:15:30 +0100 |
commit | 6bd24a2c732c0af2b3d55d27c74b7c063bd520eb (patch) | |
tree | e7311944e5d5219cc5039e2e8a355698fb3cdf4b /config/libc/uClibc.in | |
parent | 3ee9e2e9a150c848b80d05c97459d03ae1bc948e (diff) | |
download | crosstool-ng-6bd24a2c732c0af2b3d55d27c74b7c063bd520eb.tar.gz crosstool-ng-6bd24a2c732c0af2b3d55d27c74b7c063bd520eb.tar.bz2 crosstool-ng-6bd24a2c732c0af2b3d55d27c74b7c063bd520eb.zip |
libc/uClibc: normalize uclibc hidden version names
Hidden version names for uClibc conflicted:
LIBC_UCLIBC_V_0_9_30_2
LIBC_V_0_9_30_1
name them constantly as:
LIBC_UCLIBC_V_<version>
Also update the build script where we use snapshots by version or snapshots by date.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'config/libc/uClibc.in')
-rw-r--r-- | config/libc/uClibc.in | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/config/libc/uClibc.in b/config/libc/uClibc.in index f5a753bf..1740e658 100644 --- a/config/libc/uClibc.in +++ b/config/libc/uClibc.in @@ -31,22 +31,22 @@ config LIBC_UCLIBC_V_0_9_30_2 prompt "0.9.30.2" select LIBC_UCLIBC_0_9_30_or_later -config LIBC_V_0_9_30_1 +config LIBC_UCLIBC_V_0_9_30_1 bool prompt "0.9.30.1" select LIBC_UCLIBC_0_9_30_or_later -config LIBC_V_0_9_30 +config LIBC_UCLIBC_V_0_9_30 bool prompt "0.9.30" select LIBC_UCLIBC_0_9_30_or_later -config LIBC_V_0_9_29 +config LIBC_UCLIBC_V_0_9_29 bool prompt "0.9.29 (OBSOLETE)" depends on OBSOLETE -config LIBC_V_0_9_28_3 +config LIBC_UCLIBC_V_0_9_28_3 bool prompt "0.9.28.3 (OBSOLETE)" depends on OBSOLETE @@ -54,14 +54,14 @@ config LIBC_V_0_9_28_3 # As of today (20100702) we can be pretty sure that every # snapshots made since a month ago are post -0.9.30. -config LIBC_V_snapshot +config LIBC_UCLIBC_V_snapshot bool prompt "latest snapshot (EXPERIMENTAL)" depends on EXPERIMENTAL select LIBC_SUPPORT_NPTL select LIBC_UCLIBC_0_9_30_or_later -config LIBC_V_specific_date +config LIBC_UCLIBC_V_specific_date bool prompt "<specific date> (EXPERIMENTAL)" depends on EXPERIMENTAL @@ -72,17 +72,17 @@ endchoice config LIBC_VERSION string - prompt "Enter date (YYYYMMDD)" if LIBC_V_specific_date + prompt "Enter date (YYYYMMDD)" if LIBC_UCLIBC_V_specific_date # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW default "0.9.31" if LIBC_UCLIBC_V_0_9_31 default "0.9.30.3" if LIBC_UCLIBC_V_0_9_30_3 default "0.9.30.2" if LIBC_UCLIBC_V_0_9_30_2 - default "0.9.30.1" if LIBC_V_0_9_30_1 - default "0.9.30" if LIBC_V_0_9_30 - default "0.9.29" if LIBC_V_0_9_29 - default "0.9.28.3" if LIBC_V_0_9_28_3 - default "snapshot" if LIBC_V_snapshot + default "0.9.30.1" if LIBC_UCLIBC_V_0_9_30_1 + default "0.9.30" if LIBC_UCLIBC_V_0_9_30 + default "0.9.29" if LIBC_UCLIBC_V_0_9_29 + default "0.9.28.3" if LIBC_UCLIBC_V_0_9_28_3 + default "snapshot" if LIBC_UCLIBC_V_snapshot config LIBC_UCLIBC_0_9_30_or_later bool |