mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
c5893e5035
Stop running ./configure from autogen.sh. "Let's see if anybody complains!" says Roger. svn:r11159
10 lines
150 B
Bash
Executable File
10 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
aclocal && \
|
|
autoheader && \
|
|
autoconf && \
|
|
automake --add-missing --copy
|