mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
2579d827ab
The autoreconf tool deals much better with detecting which tools to use on your particular platform, handling cases where your install-sh script gets stable, and lots of other little tricky issues. We still fall back to autoconf&&automake&&etc in the case where "`which autoreconf 2>/dev/null`" says something we can't run. This is the first change of the 0.2.3.x series.
14 lines
227 B
Bash
Executable File
14 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
|
|
exec autoreconf -ivf
|
|
fi
|
|
|
|
set -e
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
aclocal && \
|
|
autoheader && \
|
|
autoconf && \
|
|
automake --add-missing --copy
|