1From 712a101c9aa2eb8548e4d0100a4a2eaf76fad164 Mon Sep 17 00:00:00 2001 2From: Jesper Lloyd <jpl.lloyd@gmail.com> 3Date: Wed, 20 Jan 2021 20:21:53 +0100 4Subject: [PATCH] make build compatible w. autoconf 2.7 5 6Workaround for stricter behaviour (due to a bugfix) in 2.7, 7which makes a failing intltoolize macro check fail the build. 8 9Fix provided by hosiet. 10 11Upstream-Status: Backport [https://github.com/mypaint/libmypaint/commit/a6bac154db018e1f1cc4dbddc34f6c8422c891fb] 12Signed-off-by: Khem Raj <raj.khem@gmail.com> 13--- 14 configure.ac | 2 +- 15 1 file changed, 1 insertion(+), 1 deletion(-) 16 17diff --git a/configure.ac b/configure.ac 18index 416d9fe..48b9d02 100644 19--- a/configure.ac 20+++ b/configure.ac 21@@ -248,7 +248,7 @@ if test "x$enable_i18n" != "xno"; then 22 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", 23 [The prefix for our gettext translation domains.]) 24 AC_SUBST(GETTEXT_PACKAGE) 25- IT_PROG_INTLTOOL 26+IT_PROG_INTLTOOL 27 AM_GLIB_GNU_GETTEXT 28 29 dnl Debian: stdlib 30-- 312.30.0 32 33