From: Bruno Haible Date: Wed, 6 Nov 2024 19:41:29 +0000 (+0100) Subject: build: Fix "make distcheck" after the line-breaking algorithm changed, part 2. X-Git-Tag: v0.23~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ceef32d03a3dd3f6a4d7897300d2099e4dab9311;p=thirdparty%2Fgettext.git build: Fix "make distcheck" after the line-breaking algorithm changed, part 2. * gettext-tools/configure.ac (MSGMERGE): Test $cross_compiling, since $CROSS_COMPILING is not set at this point. --- diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac index 86e4f1725..86432c3fb 100644 --- a/gettext-tools/configure.ac +++ b/gettext-tools/configure.ac @@ -174,7 +174,7 @@ AM_GNU_GETTEXT([use-libtool], [need-ngettext], [\${top_builddir}/../gettext-runt dnl When not cross-compiling, use the 'msgmerge' program from this package, dnl for output consistency with the 'msgfilter' program used to create dnl en@quot.po and en@boldquot.po. -if test "$CROSS_COMPILING" != yes; then +if test "$cross_compiling" != yes; then MSGMERGE='msgmerge' MSGMERGE_FOR_MSGFMT_OPTION='--for-msgfmt' fi