Demos (master): allow autogen.sh to not run configure with NOCONFIGURE

Matt Turner mattst88 at kemper.freedesktop.org
Fri Jan 27 03:58:56 UTC 2012


Module: Demos
Branch: master
Commit: acd826e65212837b80985bb4fff1d48e11ac7a33
URL:    http://cgit.freedesktop.org/mesa/demos/commit/?id=acd826e65212837b80985bb4fff1d48e11ac7a33

Author: Matt Turner <mattst88 at gmail.com>
Date:   Thu Jan 26 22:58:36 2012 -0500

allow autogen.sh to not run configure with NOCONFIGURE

---

 autogen.sh |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index 7317522..1665a10 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -10,4 +10,6 @@ cd $srcdir
 autoreconf -v --install || exit 1
 cd $ORIGDIR || exit $?
 
-"$srcdir"/configure "$@"
+if test -z "$NOCONFIGURE"; then
+	"$srcdir"/configure "$@"
+fi




More information about the mesa-commit mailing list