echo $0
cd `dirname $0`
-# Configure fetch method - GMAKE
-URL="http://www.minix3.org/distfiles-minix/make-3.80.tar.bz2"
-BACKUP_URL="ftp://ftp.gnu.org/gnu/make/make-3.80.tar.bz2"
-FETCH=wget
+FETCH=ftp
which curl >/dev/null
if [ $? -eq 0 ]; then
FETCH="curl -O -f"
fi
+# Configure fetch method - GMAKE
+URL="http://www.minix3.org/distfiles-minix/make-3.80.tar.bz2"
+BACKUP_URL="ftp://ftp.gnu.org/gnu/make/make-3.80.tar.bz2"
+
# Fetch sources if not available
if [ ! -d gmake ];
then
# Configure fetch method - TEXINFO
URL="http://www.minix3.org/distfiles-minix/texinfo-4.8.tar.bz2"
BACKUP_URL="ftp://ftp.gnu.org/gnu/texinfo/texinfo-4.8.tar.bz2"
-FETCH=wget
-which curl >/dev/null
-if [ $? -eq 0 ]; then
- FETCH="curl -O -f"
-fi
# Fetch sources if not available
if [ ! -d texinfo ];