1
0
mirror of https://git.torproject.org/tor.git synced 2025-10-05 23:42:52 +02:00
Files
tor/autogen.sh
2019-01-18 13:49:30 +02:00

25 lines
371 B
Bash
Executable File

#!/bin/sh
if command -v autoreconf; then
opt="-i -f -W all,error"
for i in "$@"; do
case "$i" in
-v)
opt="${opt} -v"
;;
esac
done
# shellcheck disable=SC2086
exec autoreconf $opt
fi
set -e
# Run this to generate all the initial makefiles, etc.
aclocal -I m4 && \
autoheader && \
autoconf && \
automake --add-missing --copy