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

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

ORIGDIR=`pwd`
cd $srcdir

autoreconf --force -v --install || exit 1
cd $ORIGDIR || exit $?

$srcdir/configure "$@"