aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabrice Fontaine <fontaine.fabrice@gmail.com>2021-10-06 17:43:16 +0200
committerSteve Bennett <steveb@workware.net.au>2021-10-07 06:46:10 +1000
commit7ccf7db0aa24ba0d091070ab1c8e29925548bab4 (patch)
treec23c3e89a794c1b52bdb450e9fcbf1c78372b42d
parentc2c640427cc84a709595d04cd61e4f4d20c6fa91 (diff)
downloadjimtcl-7ccf7db0aa24ba0d091070ab1c8e29925548bab4.zip
jimtcl-7ccf7db0aa24ba0d091070ab1c8e29925548bab4.tar.gz
jimtcl-7ccf7db0aa24ba0d091070ab1c8e29925548bab4.tar.bz2
configure.ac: fix autoreconf with autoconf >= 2.70
Fix the following build failure raised with openocd and autoconf >= 2.70 due to http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commit;h=aba75f6d4a9c875a9d5d90a07c6b3678db66a4bf: >>> openocd 0.11.0 Autoreconfiguring autoreconf: error: configure.ac: AC_INIT not found; not an autoconf script? Fixes: - http://autobuild.buildroot.org/results/5fb7aa28703aff61ba850eac11bd35c8804528ae Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index b70b5d8..8c45114 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1 +1,3 @@
# Dummy configure.ac to make automake happy
+AC_INIT([jimtcl], [0.80])
+AC_OUTPUT