1From 2f127ebe425c97b0641fe1bc73247e91e18c2be0 Mon Sep 17 00:00:00 2001 2From: Alexander Kanavin <alex@linutronix.de> 3Date: Thu, 11 Nov 2021 22:06:16 +0100 4Subject: [PATCH] libtextstyle: fix builds with automake 1.16.4 and newer 5 6Upstream-Status: Submitted [http://savannah.gnu.org/bugs/?59929] 7Signed-off-by: Alexander Kanavin <alex@linutronix.de> 8--- 9 libtextstyle/configure.ac | 5 ++--- 10 1 file changed, 2 insertions(+), 3 deletions(-) 11 12diff --git a/libtextstyle/configure.ac b/libtextstyle/configure.ac 13index 63b4c2a..cab9025 100644 14--- a/libtextstyle/configure.ac 15+++ b/libtextstyle/configure.ac 16@@ -17,11 +17,10 @@ dnl along with this program. If not, see <https://www.gnu.org/licenses/>. 17 dnl Process this file with autoconf to produce a configure script. 18 19 AC_PREREQ([2.63]) 20-AC_INIT 21+AC_INIT([libtextstyle], 22+ [0.20.1]) 23 AC_CONFIG_SRCDIR([version.sh]) 24 AC_CONFIG_AUX_DIR([build-aux]) 25-. $srcdir/version.sh 26-gl_INIT_PACKAGE([libtextstyle], [$VERSION_NUMBER]) 27 AM_INIT_AUTOMAKE([1.13 silent-rules]) 28 AM_CONFIG_HEADER([config.h]) 29 30