chore: Fix workflow error

This commit is contained in:
EnderIce2 2024-11-26 03:42:12 +02:00
parent f11c00a4e3
commit 1b1d3e68fd
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -52,8 +52,13 @@ jobs:
- name: Install GCC Dependencies
if: steps.cache-cross.outputs.cache-hit != 'true'
run: |
sudo apt -y install build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libzstd-dev libisl-dev autoconf m4 automake gettext gperf dejagnu guile-3.0 guile-3.0-dev expect tcl autogen tex-common sphinx-common git ssh diffutils patch
sudo apt -y remove autoconf* && sudo apt -y install autoconf2.69
sudo apt install build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libzstd-dev libisl-dev autoconf m4 automake gettext gperf dejagnu guile-3.0 guile-3.0-dev expect tcl autogen tex-common sphinx-common git ssh diffutils patch -y
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
tar xvfvz autoconf-2.69.tar.gz
cd autoconf-2.69
./configure
make
sudo make install
- name: Clone All
if: steps.cache-cross.outputs.cache-hit != 'true'