diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-28 23:19:16 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-29 22:11:27 +0100 |
commit | beaf1c1887837b3b4a11e681ad41cef71b2bcdf7 (patch) | |
tree | 8e2f5743775ffd46a20b19ec2d9b806b4f2359e8 | |
parent | c385bf19786a5a220dc9d1a82eb28df57afebf8b (diff) | |
download | buildroot-beaf1c1887837b3b4a11e681ad41cef71b2bcdf7.tar.gz buildroot-beaf1c1887837b3b4a11e681ad41cef71b2bcdf7.zip |
binutils: remove dead code
We no longer have any way of using version 2.23, and all the other
versions that we support are available as .tar.bz2. Therefore we can
remove the special case related to the 2.23 version only being
available as a .tar.gz archive.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
-rw-r--r-- | package/binutils/binutils.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index f40c45fc82..ab9f167d24 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -16,10 +16,6 @@ BINUTILS_VERSION = 2.21 endif endif -ifeq ($(BINUTILS_VERSION),2.23) -BINUTILS_SOURCE = binutils-$(BINUTILS_VERSION).tar.gz -endif - ifeq ($(ARCH),avr32) BINUTILS_SITE = ftp://www.at91.com/pub/buildroot endif |