From 969ec52e6bbd5c13bb1c2d1bf4731ccc80132816 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sun, 8 Oct 2006 21:28:06 +0000 Subject: r8952@totoro: nickm | 2006-10-08 17:27:56 -0400 Have autogen.sh script not run ./configure if NOCONF environment variable is set. This will make buildbot stuff go faster. svn:r8656 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 354d71433..24d48ea37 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,4 +4,4 @@ aclocal && \ autoheader && \ autoconf && \ automake --add-missing --copy && \ - ./configure + if test x$NOCONF = x ; then ./configure; fi -- cgit v1.2.3