2009-06-06 11:52:23 -06:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
ORIGDIR=`pwd`
|
|
|
|
cd $srcdir
|
|
|
|
|
2012-06-10 10:30:14 -06:00
|
|
|
autopoint --force
|
|
|
|
AUTOPOINT='intltoolize --automake --copy' autoreconf -v --install --force || exit 1
|
2009-06-06 11:52:23 -06:00
|
|
|
|
|
|
|
cd $ORIGDIR || exit $?
|
|
|
|
$srcdir/configure --enable-maintainer-mode "$@"
|