Update make_tarball.sh to run autoreconf instead of autoconf

This is necessary as part of the autotools build changes
for C++11
This commit is contained in:
ridiculousfish 2016-11-26 15:02:19 -08:00
parent 9588c9a811
commit e97c5b552c

View file

@ -49,9 +49,7 @@ rm -f "$path" "$path".gz
git archive --format=tar --prefix="$prefix"/ HEAD > "$path" git archive --format=tar --prefix="$prefix"/ HEAD > "$path"
# tarball out the documentation, generate a configure script and version file # tarball out the documentation, generate a configure script and version file
# Don't use autoreconf since it invokes commands that may not be installed, like aclocal autoreconf --no-recursive
# Don't run autoheader since configure.ac runs it. autoconf is enough.
autoconf
./configure --with-doxygen ./configure --with-doxygen
make doc share/man make doc share/man
echo $VERSION > version echo $VERSION > version