[or-cvs] r8656: Have autogen.sh script not run ./configure if NOCONF environ (tor/trunk)

nickm at seul.org nickm at seul.org
Sun Oct 8 21:28:06 UTC 2006


Author: nickm
Date: 2006-10-08 17:28:06 -0400 (Sun, 08 Oct 2006)
New Revision: 8656

Modified:
   tor/trunk/
   tor/trunk/autogen.sh
Log:
 r8952 at 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.



Property changes on: tor/trunk
___________________________________________________________________
 svk:merge ticket from /tor/trunk [r8952] on 96637b51-b116-0410-a10e-9941ebb49b64

Modified: tor/trunk/autogen.sh
===================================================================
--- tor/trunk/autogen.sh	2006-10-08 21:05:11 UTC (rev 8655)
+++ tor/trunk/autogen.sh	2006-10-08 21:28:06 UTC (rev 8656)
@@ -4,4 +4,4 @@
 	autoheader && \
 	autoconf && \
 	automake --add-missing --copy && \
-	./configure
+	if test x$NOCONF = x ; then ./configure; fi



More information about the tor-commits mailing list