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

if [ -z "$(ls gnulib 2>/dev/null)" ]
then
    git clone git://git.savannah.gnu.org/gnulib.git
fi

./gnulib/gnulib-tool --update

export AUTOMAKE='automake --foreign --add-missing'
autoreconf
./configure "$@"