1#!/bin/sh -e 2 3srcdir=`dirname "$0"` 4test -z "$srcdir" && srcdir=. 5 6ORIGDIR=`pwd` 7cd "$srcdir" 8 9autoreconf --verbose --install --force --warnings=all 10cd "$ORIGDIR" 11 12if test -z "$NOCONFIGURE"; then 13 exec "$srcdir/configure" "$@" 14fi 15