From eb907bba6875c62dd7c31ecb28d30a463754c377 Mon Sep 17 00:00:00 2001 From: Dan Kennedy Date: Thu, 26 Oct 2017 15:21:56 +0000 Subject: [PATCH] Fix a bug causing "make amalgmation-autoconf" to create an invalid package if either the current or parent directory contains a file named install.sh or install-sh. --- autoconf/configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 5a607de054..c207bdf74d 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -12,6 +12,7 @@ AC_PREREQ(2.61) AC_INIT(sqlite, --SQLITE-VERSION--, http://www.sqlite.org) AC_CONFIG_SRCDIR([sqlite3.c]) +AC_CONFIG_AUX_DIR([.]) # Use automake. AM_INIT_AUTOMAKE([foreign]) -- 2.11.4.GIT