1From 684bae6043fa2242a5c6551c3f260c9db0cf7dc8 Mon Sep 17 00:00:00 2001 2From: Andreas Klinger <ak@it-klinger.de> 3Date: Mon, 4 Jan 2021 08:40:50 +0100 4Subject: [PATCH] configure.ac: fix error with version string 5 6When autoreconfiguring there's an error: "configure.ac:6: error: AC_INIT 7should be called with package and version arguments". 8 9Put version string in square brackets to satisfy autoconfigure. 10 11Signed-off-by: Andreas Klinger <ak@it-klinger.de> 12--- 13 configure.ac | 2 +- 14 1 file changed, 1 insertion(+), 1 deletion(-) 15 16diff --git a/configure.ac b/configure.ac 17index 65387d6..7a0054e 100644 18--- a/configure.ac 19+++ b/configure.ac 20@@ -1,5 +1,5 @@ 21 AC_PREREQ(2.61) 22-AC_INIT(ply, m4_esyscmd_s(git describe --always --dirty), 23+AC_INIT(ply, [2.1.1], 24 https://github.com/wkz/ply/issues) 25 26 AC_GNU_SOURCE 27-- 282.20.1 29 30