blob: 42ce403632ec521f9d8e3caaa21a1ff3a234e0bc (
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
>ChangeLog
aclocal
autoconf
automake --add-missing --copy
)
"${srcdir}/configure" "${@}"
|