blob: 2a010862e983af08470a4b7dbf455e6b426ed03a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
set -e
srcdir="${0%/*}"
{(
cd "${srcdir}"
[ -d build-aux ] || mkdir build-aux
aclocal
autoconf
autoheader
automake --add-missing --copy
)}
"${srcdir}/configure" "${@}"
|