chore: Update autoconf installation method in workflow to use Debian package

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

View File

@ -69,13 +69,9 @@ jobs:
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*
sudo apt -y install wget tar make sudo apt -y install wget dpkg
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz wget https://launchpad.net/ubuntu/+archive/primary/+files/autoconf_2.69-11.1_all.deb
tar xvfvz autoconf-2.69.tar.gz sudo apt -y install ./autoconf_2.69-11.1_all.deb
cd autoconf-2.69
./configure
make
sudo make install
fi fi
- name: Clone All - name: Clone All