summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-05-27 16:11:03 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-05-27 16:11:03 +0200
commitab9d099a04b065d806471d0fac2978775e7fb890 (patch)
treea4071f9fa7071d02ed352f4f33a2e05b787d18ba
parentd77a89ed5facb2be70cf44fa6443bf3057a54561 (diff)
downloadembtoolkit-ab9d099a04b065d806471d0fac2978775e7fb890.tar.gz
embtoolkit-ab9d099a04b065d806471d0fac2978775e7fb890.tar.bz2
embtoolkit-ab9d099a04b065d806471d0fac2978775e7fb890.tar.xz
toolchain: gcc: remove user defined mirror in kconfig file
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
-rw-r--r--kconfig/gcc.kconfig15
-rw-r--r--mk/gcc.mk4
2 files changed, 1 insertions, 18 deletions
diff --git a/kconfig/gcc.kconfig b/kconfig/gcc.kconfig
index 48e5a4a..529b3ec 100644
--- a/kconfig/gcc.kconfig
+++ b/kconfig/gcc.kconfig
@@ -142,21 +142,6 @@ config EMBTK_GCC_REFSPEC
default "toolchain"
#
-# Use a specific GCC mirror
-#
-config EMBTK_GCC_HAVE_MIRROR
- bool "Use a gcc mirror"
- depends on !EMBTK_GCC_VERSION_GIT
- help
- specify an alternate location where to download gcc sources.
-config EMBTK_GCC_HAVE_MIRROR_SITE
- depends on EMBTK_GCC_HAVE_MIRROR
- string "Mirror site"
- default "ftp://ftp.embtoolkit.org/embtoolkit.org/packages-mirror"
- help
- specify an alternate location where to download gcc sources.
-
-#
# Versions strings for tarball packages.
#
config EMBTK_GCC_VERSION_STRING
diff --git a/mk/gcc.mk b/mk/gcc.mk
index af66b29..728a922 100644
--- a/mk/gcc.mk
+++ b/mk/gcc.mk
@@ -25,9 +25,7 @@
GCC_NAME := gcc
GCC_VERSION := $(call embtk_get_pkgversion,gcc)
-GCC_SITE := $(strip $(if $(CONFIG_EMBTK_GCC_HAVE_MIRROR), \
- $(subst ",,$(strip $(CONFIG_EMBTK_GCC_HAVE_MIRROR_SITE))), \
- http://ftp.gnu.org/gnu/gcc/gcc-$(GCC_VERSION)))
+GCC_SITE := http://ftp.gnu.org/gnu/gcc/gcc-$(GCC_VERSION)
GCC_GIT_SITE := git://gcc.gnu.org/git/gcc.git
GCC_PACKAGE := gcc-$(GCC_VERSION).tar.bz2
GCC_SRC_DIR := $(TOOLS_BUILD)/gcc-$(GCC_VERSION)