From e97c5b552c2970a2096d66bcc443ec7a615c30f3 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 26 Nov 2016 15:02:19 -0800 Subject: [PATCH] Update make_tarball.sh to run autoreconf instead of autoconf This is necessary as part of the autotools build changes for C++11 --- build_tools/make_tarball.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build_tools/make_tarball.sh b/build_tools/make_tarball.sh index c1c840e84..c0fc7a751 100755 --- a/build_tools/make_tarball.sh +++ b/build_tools/make_tarball.sh @@ -49,9 +49,7 @@ rm -f "$path" "$path".gz git archive --format=tar --prefix="$prefix"/ HEAD > "$path" # 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 -# Don't run autoheader since configure.ac runs it. autoconf is enough. -autoconf +autoreconf --no-recursive ./configure --with-doxygen make doc share/man echo $VERSION > version