aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-10-08 21:28:06 +0000
committerNick Mathewson <nickm@torproject.org>2006-10-08 21:28:06 +0000
commit969ec52e6bbd5c13bb1c2d1bf4731ccc80132816 (patch)
treed254688f3832dff39b1aec6a3bb5295d5b172698 /autogen.sh
parent326495cbb40b581afa23ac257be2840b71ddc10e (diff)
downloadtor-969ec52e6bbd5c13bb1c2d1bf4731ccc80132816.tar
tor-969ec52e6bbd5c13bb1c2d1bf4731ccc80132816.tar.gz
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
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
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