We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d88b80 commit a26a929Copy full SHA for a26a929
scripts/016-libcurl-7.31.0.sh
@@ -5,9 +5,16 @@
5
## Download the source code.
6
wget --continue http://curl.haxx.se/download/curl-7.31.0.tar.gz
7
8
+## Download an up-to-date config.guess and config.sub
9
+if [ ! -f config.guess ]; then wget --continue http://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi
10
+if [ ! -f config.sub ]; then wget --continue http://git.savannah.gnu.org/cgit/config.git/plain/config.sub; fi
11
+
12
## Unpack the source code.
13
rm -Rf curl-7.31.0 && tar xfvz curl-7.31.0.tar.gz && cd curl-7.31.0
14
15
+## Replace config.guess and config.sub
16
+cp ../config.guess ../config.sub .
17
18
## Patch the source code.
19
cat ../../patches/libcurl-7.31.0.patch | patch -p1
20
0 commit comments