diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-10-08 21:28:06 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-10-08 21:28:06 +0000 |
commit | 969ec52e6bbd5c13bb1c2d1bf4731ccc80132816 (patch) | |
tree | d254688f3832dff39b1aec6a3bb5295d5b172698 /autogen.sh | |
parent | 326495cbb40b581afa23ac257be2840b71ddc10e (diff) | |
download | tor-969ec52e6bbd5c13bb1c2d1bf4731ccc80132816.tar.gz tor-969ec52e6bbd5c13bb1c2d1bf4731ccc80132816.zip |
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-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 354d71433a..24d48ea373 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 |