python: Cleaned up dispatching in wsgidir.
[ashd.git] / bootstrap
1 #!/bin/sh
2
3 dolibtool=no
4 dogettext=no
5
6 if [ "$dogettext" = yes ]; then
7     autopoint || exit
8     aclocal$AUTOMAKE_VERSION -I m4 || exit
9 else
10     aclocal$AUTOMAKE_VERSION || exit
11 fi
12 autoheader || exit
13 if [ "$dolibtool" = yes ]; then
14     libtoolize --copy --force || exit
15 fi
16 automake$AUTOMAKE_VERSION --add-missing --copy || exit
17 autoconf || exit