mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
24 lines
358 B
Bash
Executable File
24 lines
358 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
|
|
opt="-i -f -W all,error"
|
|
|
|
for i in $@; do
|
|
case "$i" in
|
|
-v)
|
|
opt="${opt} -v"
|
|
;;
|
|
esac
|
|
done
|
|
|
|
exec autoreconf $opt
|
|
fi
|
|
|
|
set -e
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
aclocal -I m4 && \
|
|
autoheader && \
|
|
autoconf && \
|
|
automake --add-missing --copy
|