Commit 446c092f409bd37c21b5b986c2be8f87a1cb1dec

Anthony Green 2022-06-25T21:45:32

Install autoconf-2.71

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/.ci/install.sh b/.ci/install.sh
index 2033fc7..265498f 100755
--- a/.ci/install.sh
+++ b/.ci/install.sh
@@ -32,10 +32,14 @@ else
 		tar --strip-components=2 -xvzf - ./rlgl/rlgl;
 	    ;;
     esac
-set -x
+
     sudo apt-get clean # clear the cache
     sudo apt-get update
-    sudo apt-get install autoconf\*
+
+    set -x
+    wget -q0 https://ftpmirror.gnu.org/autoconf/autoconf-2.71.tar.gz | tar -xvzf
+    (cd autoconf-2.17; ./configure; make; make install)
+
     case $HOST in
 	mips64el-linux-gnu | sparc64-linux-gnu)
         ;;