1From 3106d16bbc45de52bc0a8b638a84aa9d7c9abc46 Mon Sep 17 00:00:00 2001 2From: Fabrice Fontaine <fontaine.fabrice@gmail.com> 3Date: Wed, 6 Oct 2021 17:43:16 +0200 4Subject: [PATCH] configure.ac: fix autoreconf with autoconf >= 2.70 5 6Fix the following build failure raised with openocd and autoconf >= 2.70 7due to 8http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commit;h=aba75f6d4a9c875a9d5d90a07c6b3678db66a4bf: 9 10>>> openocd 0.11.0 Autoreconfiguring 11autoreconf: error: configure.ac: AC_INIT not found; not an autoconf script? 12 13Fixes: 14 - http://autobuild.buildroot.org/results/5fb7aa28703aff61ba850eac11bd35c8804528ae 15 16Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> 17[Upstream status: https://github.com/msteveb/jimtcl/pull/209] 18--- 19 configure.ac | 2 ++ 20 1 file changed, 2 insertions(+) 21 22diff --git a/jimtcl/configure.ac b/jimtcl/configure.ac 23index b70b5d8..8c45114 100644 24--- a/jimtcl/configure.ac 25+++ b/jimtcl/configure.ac 26@@ -1 +1,3 @@ 27 # Dummy configure.ac to make automake happy 28+AC_INIT([jimtcl], [0.80]) 29+AC_OUTPUT 30-- 312.33.0 32 33