acd1f5eb4c
ok jasper@, krw@, matthieu@
14 lines
263 B
Bash
Executable File
14 lines
263 B
Bash
Executable File
#! /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 "$@"
|