From 7a9e467251f8100314658acdbd54d629c7b7576e Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Fri, 25 Sep 2015 15:10:46 +0200 Subject: [PATCH] Don't force automake v1.11, require at least v1.11 Signed-off-by: Joachim Nilsson --- autogen.sh | 4 ---- configure.ac | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index a4e931a..dbbcad3 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,7 +1,3 @@ #!/bin/sh -# Use v1.11 for backwards compat with Ubuntu 12.04 LTS -export ACLOCAL=aclocal-1.11 -export AUTOMAKE=automake-1.11 - autoreconf -W portability -visfm diff --git a/configure.ac b/configure.ac index 672023d..d506844 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ AC_PREREQ(2.61) AC_INIT(editline, 1.15.0, https://github.com/troglobit/editline/issues) -AM_INIT_AUTOMAKE([no-dist-gzip dist-xz]) +AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz]) AM_SILENT_RULES([yes]) AC_CONFIG_MACRO_DIR([m4])