Hack in priority support. Patch 1.
[libmpd.git] / autogen.sh
blob187645abea862799b3757d27c30503895b808624
1 #!/bin/sh
3 echo "running aclocal"
4 aclocal || exit 1
5 echo "running autoheader"
6 autoheader || exit 1
7 echo "running libtoolize"
8 libtoolize --force || exit 1
9 echo "running automake"
10 automake -a -c || exit 1
11 echo "running autoconf"
12 autoconf || exit 1
13 echo "running configure"
14 if test x$NOCONFIGURE = x; then
15 ./configure "$@" || exit 1