From 170922e1be75961bb08ed2807b34fd29b29b7e19 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Sat, 4 Jan 2025 18:07:18 +0200 Subject: [PATCH] chore: Purge autoconf before installing GCC dependencies in workflow Signed-off-by: EnderIce2 --- .github/workflows/makefile.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 5dd26a91..017c5bc2 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -52,6 +52,13 @@ jobs: if: steps.cache-cross.outputs.cache-hit != 'true' run: sudo apt update + - name: Purge autoconf + if: steps.cache-cross.outputs.cache-hit != 'true' + run: | + sudo apt --purge remove *autoconf* + sudo apt autoremove + sudo apt clean + - 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 autoconf2.69