2008-06-13 14:20:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
2009-09-10 04:22:13 +02:00
|
|
|
# The result of using "autoreconf -fi" should be identical to using this
|
|
|
|
# script.
|
|
|
|
|
2008-06-13 14:20:55 +02:00
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
2009-09-10 04:22:13 +02:00
|
|
|
#${AUTOPOINT:-autopoint} -f
|
|
|
|
${LIBTOOLIZE:-libtoolize} -c -f || glibtoolize -c -f
|
|
|
|
${ACLOCAL:-aclocal} -I m4
|
|
|
|
${AUTOCONF:-autoconf}
|
|
|
|
#${AUTOHEADER:-autoheader}
|
|
|
|
${AUTOMAKE:-automake} -acf --foreign
|