1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
From: =?utf-8?q?G=C3=B6ran_Weinholt?= <goran@weinholt.se>
Date: Sun, 10 Dec 2017 19:17:24 +0100
Subject: configure: Do not download dependencies
Forwarded: not-needed
---
configure | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/configure b/configure
index 2780d81..3a2971a 100755
--- a/configure
+++ b/configure
@@ -409,34 +409,6 @@ if [ "$m" = "" -o ! -f boot/$m/scheme.boot ] ; then
exit 1
fi
-if [ -d '.git' ] && command -v git >/dev/null 2>&1 ; then
- git submodule init && git submodule update || exit 1
-else
- if [ ! -f 'nanopass/nanopass.ss' ] ; then
- rmdir nanopass > /dev/null 2>&1
- (curl -L -o v1.9.1.tar.gz https://github.com/nanopass/nanopass-framework-scheme/archive/v1.9.1.tar.gz && tar -zxf v1.9.1.tar.gz && mv nanopass-framework-scheme-1.9.1 nanopass && rm v1.9.1.tar.gz) || exit 1
- fi
-
- if [ "${zlibDep}" != "" ] ; then
- if [ ! -f 'zlib/configure' ] ; then
- rmdir zlib > /dev/null 2>&1
- (curl -L -o v1.2.11.tar.gz https://github.com/madler/zlib/archive/v1.2.11.tar.gz && tar -xzf v1.2.11.tar.gz && mv zlib-1.2.11 zlib && rm v1.2.11.tar.gz) || exit 1
- fi
- fi
-
- if [ "${LZ4Dep}" != "" ] ; then
- if [ ! -f 'lz4/lib/Makefile' ] ; then
- rmdir lz4 > /dev/null 2>&1
- (curl -L -o v1.9.2.tar.gz https://github.com/lz4/lz4/archive/v1.9.2.tar.gz && tar -xzf v1.9.2.tar.gz && mv lz4-1.9.2 lz4 && rm v1.9.2.tar.gz) || exit 1
- fi
- fi
-
- if [ ! -f 'stex/Mf-stex' ] ; then
- rmdir stex > /dev/null 2>&1
- (curl -L -o v1.2.2.tar.gz https://github.com/dybvig/stex/archive/v1.2.2.tar.gz && tar -zxf v1.2.2.tar.gz && mv stex-1.2.2 stex && rm v1.2.2.tar.gz) || exit 1
- fi
-fi
-
./workarea $m $w
sed -e 's/$(m)/'$m'/g'\
|