From 9875dc174587e5233dee6ae0a80b24b75783e229 Mon Sep 17 00:00:00 2001 From: Thomas Sader Date: Sun, 16 Jun 2024 16:45:20 +0200 Subject: [PATCH] Test autotools --- .github/workflows/autotools.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml index abf80a5ee..a7ac01882 100644 --- a/.github/workflows/autotools.yml +++ b/.github/workflows/autotools.yml @@ -16,12 +16,11 @@ jobs: run: sudo apt-get install build-essential autoconf - name: Stage configure with revision removed run: | - echo `find . -name configure` - for i in `find . -name configure`; do echo $i; sed -i 's/From configure.ac (.*)//' $i; git add $i; done + for i in `find . -name configure`; do sed -i 's/From configure.ac .*//' $i; git add $i; done - name: Run autotools run: misc/runautotools - name: Remove configure revision again run: | - for i in `find . -name configure`; do echo $i; sed -i 's/From configure.ac (.*)//' $i; done + for i in `find . -name configure`; do sed -i 's/From configure.ac .*//' $i; done - name: Check diff run: git diff