mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
969ec52e6b
Have autogen.sh script not run ./configure if NOCONF environment variable is set. This will make buildbot stuff go faster. svn:r8656
8 lines
191 B
Bash
Executable File
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
|