In the output of configure, I see:

...
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking whether NLS is requested... yes
...

It seems we have two checks for NLS. The attached patch attempts to fix
this. I have no idea what I'm doing here. I just observe that before the
patch the line is duplicated and after the patch there is only one
check.

Scott
From 6bfb47eadad68faa8be86506d56e888735f2c7c5 Mon Sep 17 00:00:00 2001
From: Scott Kostyshak <skost...@lyx.org>
Date: Fri, 20 Nov 2015 22:15:34 -0500
Subject: [PATCH] autotools: remove duplicate check for NLS

Before, the line

  checking whether NLS is requested... yes

Appeared twice in the output of configure.
---
 m4/po.m4 | 1 -
 1 file changed, 1 deletion(-)

diff --git a/m4/po.m4 b/m4/po.m4
index f395723..916d46e 100644
--- a/m4/po.m4
+++ b/m4/po.m4
@@ -25,7 +25,6 @@ AC_DEFUN([AM_PO_SUBDIRS],
   AC_REQUIRE([AC_PROG_MAKE_SET])dnl
   AC_REQUIRE([AC_PROG_INSTALL])dnl
   AC_REQUIRE([AC_PROG_MKDIR_P])dnl
-  AC_REQUIRE([AM_NLS])dnl
 
   dnl Release version of the gettext macros. This is used to ensure that
   dnl the gettext macros and po/Makefile.in.in are in sync.
-- 
2.1.4

Attachment: signature.asc
Description: PGP signature

Reply via email to