From f015ff606fbeb0ac2ff5272f0d8640556f8e8306 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Sat, 4 Jan 2025 18:33:52 +0200 Subject: [PATCH] chore: Update makefile.yml to install automake alongside autoconf Signed-off-by: EnderIce2 --- .github/workflows/makefile.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 138af744..00164ec6 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -69,11 +69,9 @@ jobs: if [ "$(autoconf --version | head -n 1 | awk '{print $NF}')" != "2.69" ]; then echo "Autoconf version is not 2.69, performing additional steps..." sudo apt --purge remove *autoconf* *automake* - sudo apt -y install wget dpkg + sudo apt -y install wget dpkg automake wget https://launchpad.net/ubuntu/+archive/primary/+files/autoconf_2.69-11.1_all.deb sudo apt -y install ./autoconf_2.69-11.1_all.deb - wget https://launchpad.net/ubuntu/+archive/primary/+files/automake1.4_1.4-p6-13.1_all.deb - sudo apt -y install ./automake1.4_1.4-p6-13.1_all.deb fi - name: Clone All