Commit 48563695 authored by Eric Andersen's avatar Eric Andersen
Browse files

don't use ftp for gnu stuff, a few version bumps as well,

based on a patch from Fu Yunhui
parent 82620711
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
#
#############################################################
AUTOCONF_SOURCE:=autoconf-2.59.tar.bz2
AUTOCONF_SITE:=ftp://ftp.gnu.org/gnu/autoconf
AUTOCONF_SITE:=http://ftp.gnu.org/pub/gnu/autoconf
AUTOCONF_CAT:=bzcat
AUTOCONF_DIR:=$(BUILD_DIR)/autoconf-2.59
AUTOCONF_BINARY:=autoconf
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
#############################################################
AUTOMAKE_VER:=1.9.6
AUTOMAKE_SOURCE:=automake-$(AUTOMAKE_VER).tar.bz2
AUTOMAKE_SITE:=ftp://ftp.gnu.org/gnu/automake
AUTOMAKE_SITE:=http://ftp.gnu.org/pub/gnu/automake
AUTOMAKE_CAT:=bzcat
AUTOMAKE_DIR:=$(BUILD_DIR)/automake-$(AUTOMAKE_VER)
AUTOMAKE_BINARY:=automake
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
#############################################################
BASH_VER:=3.1
BASH_SOURCE:=bash-$(BASH_VER).tar.gz
BASH_SITE:=ftp://ftp.gnu.org/gnu/bash
BASH_SITE:=http://ftp.gnu.org/pub/gnu/bash
BASH_CAT:=zcat
BASH_DIR:=$(BUILD_DIR)/bash-$(BASH_VER)
BASH_BINARY:=bash
+2 −2
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@
# bison
#
#############################################################
BISON_VER:=2.1
BISON_VER:=2.3
BISON_SOURCE:=bison-$(BISON_VER).tar.bz2
BISON_SITE:=ftp://ftp.gnu.org/gnu/bison
BISON_SITE:=http://ftp.gnu.org/pub/gnu/bison
BISON_DIR:=$(BUILD_DIR)/bison-$(BISON_VER)
BISON_CAT:=bzcat
BISON_BINARY:=src/bison
+2 −2
Original line number Diff line number Diff line
@@ -3,10 +3,10 @@
# coreutils
#
#############################################################
COREUTILS_VER:=5.94
COREUTILS_VER:=5.96
COREUTILS_SOURCE:=coreutils-$(COREUTILS_VER).tar.bz2
#COREUTILS_SITE:=ftp://alpha.gnu.org/gnu/coreutils/
COREUTILS_SITE:=ftp://ftp.gnu.org/gnu/coreutils/
COREUTILS_SITE:=http://ftp.gnu.org/pub/gnu/coreutils
COREUTILS_CAT:=bzcat
COREUTILS_DIR:=$(BUILD_DIR)/coreutils-$(COREUTILS_VER)
COREUTILS_BINARY:=src/vdir
Loading