pixman/autogen.sh
Daniel Stone d1ce3f9550 Use canonical autogen.sh
Use the standard autogen.sh, which allows for srcdir != builddir.
2007-05-24 16:19:40 +03:00

13 lines
195 B
Bash
Executable File

#! /bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
$srcdir/configure --enable-maintainer-mode "$@"