diff options
author | Mirko Vogt <mirko@openwrt.org> | 2012-04-28 20:47:48 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2012-04-28 20:47:48 +0000 |
commit | 6831c99f65e1d731d1916c58b29e6254d369620e (patch) | |
tree | 879768ea9172f43f123c1eede969ac04b6ee4119 /toolchain/eglibc/Makefile | |
parent | e3689f3badeadc906471feabdfd6c7e06f2c6fcc (diff) | |
download | upstream-6831c99f65e1d731d1916c58b29e6254d369620e.tar.gz upstream-6831c99f65e1d731d1916c58b29e6254d369620e.tar.bz2 upstream-6831c99f65e1d731d1916c58b29e6254d369620e.zip |
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 <logout@free.fr>
SVN-Revision: 31502
Diffstat (limited to 'toolchain/eglibc/Makefile')
-rw-r--r-- | toolchain/eglibc/Makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/toolchain/eglibc/Makefile b/toolchain/eglibc/Makefile index fbd9daa033..5623fcbcb8 100644 --- a/toolchain/eglibc/Makefile +++ b/toolchain/eglibc/Makefile @@ -21,9 +21,6 @@ endif ifneq ($(CONFIG_EGLIBC_VERSION_2_14),) PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_14 endif -ifneq ($(CONFIG_EGLIBC_VERSION_TRUNK),) - PKG_SOURCE_URL:=svn://svn.eglibc.org/trunk -endif PATCH_DIR:=./patches/$(PKG_VERSION) |