diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-28 18:42:02 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-28 18:42:02 +0000 |
commit | f46b9cda0d908cb5958a86bc87cb5d951e41e2cd (patch) | |
tree | 57ccec7d6411527abae2f92b83ebf69c22a71222 /toolchain/gdb/gdb.mk | |
parent | a4c8130640da5b989d3cdb861a438f639499413a (diff) | |
download | buildroot-novena-f46b9cda0d908cb5958a86bc87cb5d951e41e2cd.tar.gz buildroot-novena-f46b9cda0d908cb5958a86bc87cb5d951e41e2cd.zip |
toolchain/gdb: remove broken snapshot support
Diffstat (limited to 'toolchain/gdb/gdb.mk')
-rw-r--r-- | toolchain/gdb/gdb.mk | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk index 11a394117..7e85b0070 100644 --- a/toolchain/gdb/gdb.mk +++ b/toolchain/gdb/gdb.mk @@ -6,15 +6,6 @@ GDB_VERSION:=$(strip $(subst ",, $(BR2_GDB_VERSION))) #")) -ifeq ($(GDB_VERSION),snapshot) -# Be aware that this changes daily.... -GDB_SITE:=ftp://sources.redhat.com/pub/gdb/snapshots/current -GDB_SOURCE:=gdb.tar.bz2 -GDB_CAT:=$(BZCAT) -GDB_DIR:=$(TOOL_BUILD_DIR)/gdb-$(GDB_VERSION) -GDB_PATCH_DIR:=toolchain/gdb/$(GDB_VERSION) -else - GDB_OFFICIAL_VERSION:=$(GDB_VERSION)$(VENDOR_SUFFIX)$(VENDOR_GDB_RELEASE) GDB_SOURCE:=gdb-$(GDB_OFFICIAL_VERSION).tar.bz2 @@ -38,7 +29,6 @@ endif ifeq ($(GDB_VERSION),6.3) DISABLE_GDBMI:=--disable-gdbmi endif -endif $(DL_DIR)/$(GDB_SOURCE): $(call DOWNLOAD,$(GDB_SITE),$(GDB_SOURCE)) |