2012-10-10 12:53:26 -06:00
|
|
|
#!/bin/sh -e
|
2009-01-13 19:25:35 -07:00
|
|
|
|
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-10-23 07:58:51 -06:00
|
|
|
autoreconf --verbose --install --force --warnings=all
|
2012-10-10 12:53:26 -06:00
|
|
|
cd "$ORIGDIR"
|
2009-01-13 19:25:35 -07:00
|
|
|
|
2012-10-10 12:53:26 -06:00
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
|
|
exec "$srcdir/configure" "$@"
|
|
|
|
fi
|