2009-01-13 19:25:35 -07:00
|
|
|
#! /bin/sh
|
|
|
|
|
2010-11-11 15:03:43 -07:00
|
|
|
srcdir=`dirname "$0"`
|
2009-01-13 19:25:35 -07:00
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
ORIGDIR=`pwd`
|
2010-11-11 15:03:43 -07:00
|
|
|
cd "$srcdir"
|
2009-01-13 19:25:35 -07:00
|
|
|
|
2012-04-10 13:04:05 -06:00
|
|
|
autoreconf --verbose --install --symlink --warnings=all || exit 1
|
2010-11-11 15:03:43 -07:00
|
|
|
cd "$ORIGDIR" || exit $?
|
2009-01-13 19:25:35 -07:00
|
|
|
|
2010-11-11 15:03:43 -07:00
|
|
|
exec "$srcdir/configure" --enable-maintainer-mode "$@"
|