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 85402253d0
commit 0e339b256a
1 changed files with 3 additions and 1 deletions

View File

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