chore: Update autoconf workflow to also purge and install automake

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-01-04 18:30:46 +02:00
parent 9a9ee7e571
commit df0c17b50f
No known key found for this signature in database
GPG Key ID: 2EE20AF089811A5A

View File

@ -68,10 +68,12 @@ jobs:
run: | run: |
if [ "$(autoconf --version | head -n 1 | awk '{print $NF}')" != "2.69" ]; then if [ "$(autoconf --version | head -n 1 | awk '{print $NF}')" != "2.69" ]; then
echo "Autoconf version is not 2.69, performing additional steps..." echo "Autoconf version is not 2.69, performing additional steps..."
sudo apt --purge remove *autoconf* sudo apt --purge remove *autoconf* *automake*
sudo apt -y install wget dpkg sudo apt -y install wget dpkg
wget https://launchpad.net/ubuntu/+archive/primary/+files/autoconf_2.69-11.1_all.deb 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 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 fi
- name: Clone All - name: Clone All