From 5873df753ab4f4bac47385d0e07e73cbfb19194b Mon Sep 17 00:00:00 2001 From: Damien Stuart Date: Wed, 21 Nov 2012 22:16:39 -0500 Subject: [PATCH] Tweaks to fix autoconf-related portability issues and autogen.sh reliability --- autogen.sh | 8 +++++++- configure.ac | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 6556e566..cf580cee 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,8 +6,14 @@ # set -x -aclocal -I config +if [ ! -d m4 ]; then + mkdir m4 +fi +if [ ! -d config ]; then + mkdir config +fi libtoolize --automake --copy --force +aclocal -I config autoheader automake --add-missing --copy autoconf diff --git a/configure.ac b/configure.ac index cb31015f..6715f9a7 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ AC_CONFIG_AUX_DIR(config) AC_CANONICAL_TARGET -AM_INIT_AUTOMAKE([tar-ustar -Wall foreign]) +AM_INIT_AUTOMAKE dnl AM_MAINTAINER_MODE