diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-08-15 18:26:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-08-15 18:26:17 +0000 |
commit | 385722273130036b79527e98f5ed260ccd44d7c6 (patch) | |
tree | 443010ff5f7ed06a96ea61787de8ebebae3d78c8 /toolchain/binutils/Makefile | |
parent | ae11850ab37be5109f88f7c7d786b1585a70fe01 (diff) | |
download | upstream-385722273130036b79527e98f5ed260ccd44d7c6.tar.gz upstream-385722273130036b79527e98f5ed260ccd44d7c6.tar.bz2 upstream-385722273130036b79527e98f5ed260ccd44d7c6.zip |
add new binutils versions
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1684 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/binutils/Makefile')
-rw-r--r-- | toolchain/binutils/Makefile | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/toolchain/binutils/Makefile b/toolchain/binutils/Makefile index e3bee5da17..2a1c728dbb 100644 --- a/toolchain/binutils/Makefile +++ b/toolchain/binutils/Makefile @@ -13,29 +13,27 @@ BINUTILS_SITE:=http://www.fr.kernel.org/pub/linux/devel/binutils \ http://ftp.kernel.org/pub/linux/devel/binutils \ http://www.de.kernel.org/pub/linux/devel/binutils -ifeq ($(BINUTILS_VERSION),2.15) -BINUTILS_SITE:=http://ftp.gnu.org/gnu/binutils/ \ +BINUTILS_STABLE_SITE:=http://ftp.gnu.org/gnu/binutils/ \ ftp://gatekeeper.dec.com/pub/GNU/ \ ftp://ftp.uu.net/archive/systems/gnu/ \ ftp://ftp.eu.uu.net/pub/gnu/ \ ftp://ftp.funet.fi/pub/gnu/prep/ \ ftp://ftp.leo.org/pub/comp/os/unix/gnu/ + +ifeq ($(BINUTILS_VERSION),2.16.1) +BINUTILS_SITE:=$(BINUTILS_STABLE_SITE) +endif +ifeq ($(BINUTILS_VERSION),2.16) +BINUTILS_SITE:=$(BINUTILS_STABLE_SITE) +endif +ifeq ($(BINUTILS_VERSION),2.15) +BINUTILS_SITE:=$(BINUTILS_STABLE_SITE) endif ifeq ($(BINUTILS_VERSION),2.14) -BINUTILS_SITE:=http://ftp.gnu.org/gnu/binutils/ \ - ftp://gatekeeper.dec.com/pub/GNU/ \ - ftp://ftp.uu.net/archive/systems/gnu/ \ - ftp://ftp.eu.uu.net/pub/gnu/ \ - ftp://ftp.funet.fi/pub/gnu/prep/ \ - ftp://ftp.leo.org/pub/comp/os/unix/gnu/ +BINUTILS_SITE:=$(BINUTILS_STABLE_SITE) endif ifeq ($(BINUTILS_VERSION),2.13) -BINUTILS_SITE:=http://ftp.gnu.org/gnu/binutils/ \ - ftp://gatekeeper.dec.com/pub/GNU/ \ - ftp://ftp.uu.net/archive/systems/gnu/ \ - ftp://ftp.eu.uu.net/pub/gnu/ \ - ftp://ftp.funet.fi/pub/gnu/prep/ \ - ftp://ftp.leo.org/pub/comp/os/unix/gnu/ +BINUTILS_SITE:=$(BINUTILS_STABLE_SITE) endif BINUTILS_SOURCE:=binutils-$(BINUTILS_VERSION).tar.bz2 |