summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: c90bb3950f58e9a87da4bbe719a3700f6591a150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e

srcdir="${0%/*}"

{(
	cd "${srcdir}"
	[ -d build-aux ] || mkdir build-aux
	aclocal
	autoconf
	automake --add-missing --copy
)}

"${srcdir}/configure" "${@}"