Skip to content

Commit 579971e

Browse files
committed
Fix MacOS CI
1 parent 080e756 commit 579971e

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
4141
- name: bootstrap
4242
run: |
43-
./build_aux/bootstrap install
43+
./autogen.sh install
4444
4545
- name: Build environment setup
4646
run: |

build_aux/bootstrap

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,19 @@ for file in $scripts ; do
5959
fi
6060
done
6161

62+
if test "$1" = "install"; then
63+
64+
echo; echo "running autopoint..."
65+
ret=0
66+
67+
(cd $MAINPATH; autopoint -f); ret=$?
68+
69+
if test $ret -ne 0; then
70+
echo; echo "ERROR, autopoint returned $ret - aborting bootstrap" && exit $ret
71+
fi
72+
73+
fi
74+
6275
echo; echo "running autoreconf..."
6376
ret=0
6477

0 commit comments

Comments
 (0)