diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-09-13 17:51:33 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-09-13 17:51:33 +0200 |
commit | caeb4ada2387a8750acba9c514f0f356e142e777 (patch) | |
tree | 78d4c894ed932449d8ef0e93a24478b40c881166 /config/libc/eglibc.in | |
parent | 2418f95c9e73994e9094c62fa1d4e227192fef77 (diff) | |
download | crosstool-ng-caeb4ada2387a8750acba9c514f0f356e142e777.tar.gz crosstool-ng-caeb4ada2387a8750acba9c514f0f356e142e777.tar.bz2 crosstool-ng-caeb4ada2387a8750acba9c514f0f356e142e777.zip |
config: re-order menu entries so that latest versions are at the top
It makes better sense to have latest versions at the top of the choice
entries.
Diffstat (limited to 'config/libc/eglibc.in')
-rw-r--r-- | config/libc/eglibc.in | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/config/libc/eglibc.in b/config/libc/eglibc.in index ced8d953..c98ebd52 100644 --- a/config/libc/eglibc.in +++ b/config/libc/eglibc.in @@ -16,29 +16,29 @@ choice bool prompt "eglibc version" -config EGLIBC_V_2_5 - bool - prompt "2_5" - -config EGLIBC_V_2_6 +config LIBC_V_2_10 bool - prompt "2_6" + prompt "2_10" -config EGLIBC_V_2_7 +config EGLIBC_V_2_9 bool - prompt "2_7" + prompt "2_9" config EGLIBC_V_2_8 bool prompt "2_8" -config EGLIBC_V_2_9 +config EGLIBC_V_2_7 bool - prompt "2_9" + prompt "2_7" -config LIBC_V_2_10 +config EGLIBC_V_2_6 bool - prompt "2_10" + prompt "2_6" + +config EGLIBC_V_2_5 + bool + prompt "2_5" # CT_INSERT_VERSION_ABOVE # Don't remove above line! @@ -54,12 +54,12 @@ endchoice config LIBC_VERSION string default "trunk" if EGLIBC_V_TRUNK - default "2_5" if EGLIBC_V_2_5 - default "2_6" if EGLIBC_V_2_6 - default "2_7" if EGLIBC_V_2_7 - default "2_8" if EGLIBC_V_2_8 - default "2_9" if EGLIBC_V_2_9 default "2_10" if LIBC_V_2_10 + default "2_9" if EGLIBC_V_2_9 + default "2_8" if EGLIBC_V_2_8 + default "2_7" if EGLIBC_V_2_7 + default "2_6" if EGLIBC_V_2_6 + default "2_5" if EGLIBC_V_2_5 # CT_INSERT_VERSION_STRING_ABOVE # Don't remove above line! |