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

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

ORIGDIR=`pwd`
cd $srcdir

autopoint --force
AUTOPOINT='intltoolize --automake --copy' autoreconf -v --install --force || exit 1

cd $ORIGDIR || exit $?
$srcdir/configure --enable-maintainer-mode "$@"