From: Todd C. Miller Date: Tue, 7 Aug 2018 12:10:21 +0000 (-0600) Subject: Warn if unable to run xgettext or msgfmt. X-Git-Tag: SUDO_1_8_24^2~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78190bb9cb4913409172d80af3218bdfc1a03593;p=sudo Warn if unable to run xgettext or msgfmt. --- diff --git a/Makefile.in b/Makefile.in index b88d4a99d..380779241 100644 --- a/Makefile.in +++ b/Makefile.in @@ -238,6 +238,8 @@ update-pot: rm -f $$pot.tmp; \ fi; \ done; \ + else \ + echo "Unable to update .pot files: $(XGETTEXT) not found" 1>&2; \ fi update-po: update-pot @@ -251,6 +253,8 @@ update-po: update-pot $(MSGFMT) --output /dev/null --check-format $$po || exit 1; \ done; \ done; \ + else \ + echo "Unable to update .po files: $(MSGFMT) not found" 1>&2; \ fi compile-po: @@ -273,6 +277,8 @@ compile-po: done; \ $(MAKE) -f Makefile.$$$$; \ rm -f Makefile.$$$$; \ + else \ + echo "Unable to compile message catalogs: $(MSGFMT) not found" 1>&2; \ fi install-nls: