We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 080e756 commit 579971eCopy full SHA for 579971e
.github/workflows/macos.yml
@@ -40,7 +40,7 @@ jobs:
40
41
- name: bootstrap
42
run: |
43
- ./build_aux/bootstrap install
+ ./autogen.sh install
44
45
- name: Build environment setup
46
build_aux/bootstrap
@@ -59,6 +59,19 @@ for file in $scripts ; do
59
fi
60
done
61
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
75
echo; echo "running autoreconf..."
76
ret=0
77
0 commit comments