autogen.sh: Honor NOCONFIGURE=1

See http://people.gnome.org/~walters/docs/build-api.txt
This commit is contained in:
Colin Walters 2013-03-21 17:44:10 -04:00 committed by Marc-André Lureau
parent df6bc6269e
commit f3579abb3a

View File

@ -160,5 +160,7 @@ do_cmd $AUTOCONF
cd "$ORIGDIR" || exit $?
rm -f config.cache
do_cmd $srcdir/configure --enable-maintainer-mode ${1+"$@"} || exit 1
if test -z "$NOCONFIGURE"; then
do_cmd $srcdir/configure --enable-maintainer-mode ${1+"$@"} || exit 1
fi