1From b8d5d086489ff20339e221323a60c140a9820e67 Mon Sep 17 00:00:00 2001 2From: Fabrice Fontaine <fontaine.fabrice@gmail.com> 3Date: Sat, 9 Oct 2021 09:39:52 +0200 4Subject: [PATCH] configure.ac: fix autoreconf with autoconf >= 2.70 5 6Drop AC_CONFIG_AUX_DIR to avoid the following build failure with 7autoconf >= 2.70: 8 9autoreconf: error: cannot create config/autoconf: No such file or directory 10 11Fixes: 12 - http://autobuild.buildroot.org/results/433599039d6e1ee301465f9867e169c121a0646f 13 14Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> 15[Upstream status: not sent as upstream is unmaintained: 16https://gitlab.com/cespedes/ltrace/-/issues/8] 17--- 18 configure.ac | 1 - 19 1 file changed, 1 deletion(-) 20 21diff --git a/configure.ac b/configure.ac 22index b9c39fa..486589b 100644 23--- a/configure.ac 24+++ b/configure.ac 25@@ -28,7 +28,6 @@ AC_INIT([ltrace],[0.7.91],[ltrace-devel@lists.alioth.debian.org], 26 AC_CONFIG_HEADERS([config.h]) 27 AC_CONFIG_SRCDIR(libltrace.c) 28 AC_CONFIG_MACRO_DIR([config/m4]) 29-AC_CONFIG_AUX_DIR([config/autoconf]) 30 AC_CANONICAL_BUILD 31 AC_CANONICAL_HOST 32 33-- 342.33.0 35 36