autogen.sh: Honor NOCONFIGURE=1

See http://people.gnome.org/~walters/docs/build-api.txt

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
This commit is contained in:
Alan Coopersmith 2014-05-31 21:39:32 -07:00
parent 3de8874f5d
commit 50574404bd

View file

@ -24,4 +24,6 @@ fi
autoreconf -v --install || exit 1 autoreconf -v --install || exit 1
cd $ORIGDIR || exit $? cd $ORIGDIR || exit $?
$srcdir/configure "$@" if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
fi