Some old autoconf versions do not work properly when using autoreconf, but work fine when calling aclocal, autoconf and autoheader manually. FossilOrigin-Name: 92aea1ca9097351c103bb5b995095da6c2158ce65c63464fe8d4b2a0d63967c0
10 lines
177 B
Bash
Executable file
10 lines
177 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Set a version for OpenBSD
|
|
: ${AUTOCONF_VERSION:=2.69}
|
|
: ${AUTOMAKE_VERSION:=1.16}
|
|
export AUTOCONF_VERSION AUTOMAKE_VERSION
|
|
|
|
aclocal -I build-aux/m4
|
|
autoconf
|