From 6831c99f65e1d731d1916c58b29e6254d369620e Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Sat, 28 Apr 2012 20:47:48 +0000 Subject: drop support for eglibc version trunk/HEAD When selecting a specific eglibc version, it comes with a specific SVN revision that should not be modified as it (more or less) correspond to a tagged release. This patch disable the possibility to select a specific SVN revision on known eglib versions. This patch also disables the possibility to select the trunk branch of eglibc. There are multiple reasons for that: * trunk/HEAD may not even compile * the OpenWrt built system makes using trunk/HEAD a difficult thing, as OpenWRT fetches the source tree and store it in a compressed tar archive. Subsequent build get the source from the tar archive - not from SVN, making the use of trunk/HEAD largelly innefective. * we cannot know the corresponding version of trunk/HEAD, meaning that we'll face compiling issues when we'll try to copy the libc files - unless the build system is fixed with this specific issue in mind. Signed-off-by: Emmanuel Deloget SVN-Revision: 31502 --- toolchain/eglibc/Config.version | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'toolchain/eglibc/Config.version') diff --git a/toolchain/eglibc/Config.version b/toolchain/eglibc/Config.version index b081cec..6f2e6a9 100644 --- a/toolchain/eglibc/Config.version +++ b/toolchain/eglibc/Config.version @@ -1,6 +1,6 @@ config EGLIBC_VERSION string depends on USE_EGLIBC - default "2.13" if EGLIBC_VERSION_2_13 - default "2.14.1" if EGLIBC_VERSION_2_14 - default "trunk" + default "2.13" if EGLIBC_VERSION_2_13 + default "2.14.1" if EGLIBC_VERSION_2_14 + default "2.13" -- cgit v1.1