0
0
mirror of https://gitlab.torproject.org/tpo/core/tor.git synced 2024-09-20 12:22:14 +02:00
tor/autogen.sh
Nick Mathewson 0e597471af Use a nicely written autoconf macro to determine the sign of a type
This beats our old implementation, which wouldn't work when cross-compiling
2013-02-07 16:23:48 -05:00

24 lines
339 B
Bash
Executable File

#!/bin/sh
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
opt="-if"
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