autogen.sh revision 079e7944
1#! /bin/sh
2
3
4srcdir=`dirname $0`
5test -z "$srcdir" && srcdir=.
6
7ORIGDIR=`pwd`
8cd $srcdir
9
10autoreconf -v --install || exit 1
11cd $ORIGDIR || exit $?
12
13if test -z "$NOCONFIGURE"; then
14    $srcdir/configure "$@"
15fi
16