Blame


1 72931428 2021-09-21 thomas.ad #!/bin/sh
2 72931428 2021-09-21 thomas.ad
3 f600ad76 2023-01-06 thomas if [ "x$(uname)" = "xOpenBSD" ]; then
4 f600ad76 2023-01-06 thomas [ -z "$AUTOMAKE_VERSION" ] && export AUTOMAKE_VERSION=1.16
5 f600ad76 2023-01-06 thomas [ -z "$AUTOCONF_VERSION" ] && export AUTOCONF_VERSION=2.69
6 f600ad76 2023-01-06 thomas fi
7 f600ad76 2023-01-06 thomas
8 f600ad76 2023-01-06 thomas
9 72931428 2021-09-21 thomas.ad die()
10 72931428 2021-09-21 thomas.ad {
11 2f4dd2c2 2021-09-27 thomas echo "$1" >&2
12 72931428 2021-09-21 thomas.ad exit $2
13 72931428 2021-09-21 thomas.ad }
14 72931428 2021-09-21 thomas.ad
15 72931428 2021-09-21 thomas.ad autoreconf -f -i -v || die "autoreconf failed" $?