0
0
mirror of https://gitlab.torproject.org/tpo/core/tor.git synced 2024-09-20 04:12:13 +02:00
tor/autogen.sh
Nick Mathewson 969ec52e6b 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
2006-10-08 21:28:06 +00:00

8 lines
191 B
Bash
Executable File

#!/bin/sh
# Run this to generate all the initial makefiles, etc.
aclocal && \
autoheader && \
autoconf && \
automake --add-missing --copy && \
if test x$NOCONF = x ; then ./configure; fi