autogen.sh: Honor NOCONFIGURE=1
authorColin Walters <walters@verbum.org>
Thu, 14 Jun 2012 20:38:27 +0000 (16:38 -0400)
committerColin Walters <walters@verbum.org>
Thu, 14 Jun 2012 20:38:27 +0000 (16:38 -0400)
See http://people.gnome.org/~walters/docs/build-api.txt

autogen.sh

index ae6ec89..aff1175 100755 (executable)
@@ -6,4 +6,6 @@ gtkdocize || exit 1
 intltoolize --force --copy --automake || exit 1
 
 # gnome-autogen.sh runs configure, so do likewise.
-autoreconf -vif && ./configure "$@"
+autoreconf -vif
+test -n "$NOCONFIGURE" || ./configure "$@"
+