build: honor NOCONFIGURE (bgo #659354)
authorColin Walters <walters@verbum.org>
Mon, 19 Sep 2011 21:45:43 +0000 (16:45 -0500)
committerDan Williams <dcbw@redhat.com>
Mon, 19 Sep 2011 21:45:43 +0000 (16:45 -0500)
autogen.sh

index 67816be..c019402 100755 (executable)
@@ -17,6 +17,8 @@ PKG_NAME=NetworkManager
     gtkdocize || exit 1
     autopoint --force
     AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
-    ./configure --enable-maintainer-mode $@
+    if test -z "$NOCONFIGURE"; then
+        ./configure --enable-maintainer-mode $@
+    fi
 )