From: Harald Nordgren Date: Sat, 20 Jun 2026 22:46:10 +0000 (+0000) Subject: git-gui: drop msgfmt --statistics output X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33ceb741218f8d499051a97b988787e4be140565;p=thirdparty%2Fgit.git git-gui: drop msgfmt --statistics output The catalog rules ran msgfmt with --statistics, whose output goes to stderr and so survive "make -s". The statistics are not needed, as in 2f12b31b746c (Makefile: don't invoke msgfmt with --statistics, 2021-12-17). Remove it so a quiet build stays quiet. Signed-off-by: Harald Nordgren [j6t: adjust commit message] Signed-off-by: Johannes Sixt --- diff --git a/Makefile b/Makefile index d33204e875..48d848a59d 100644 --- a/Makefile +++ b/Makefile @@ -155,7 +155,7 @@ $(PO_TEMPLATE): $(SCRIPT_SH) $(ALL_LIBFILES) update-po:: $(PO_TEMPLATE) $(foreach p, $(ALL_POFILES), echo Updating $p ; msgmerge -U $p $(PO_TEMPLATE) ; ) $(ALL_MSGFILES): %.msg : %.po - $(QUIET_MSGFMT0)$(MSGFMT) --statistics --tcl -l $(basename $(notdir $<)) -d $(dir $@) $< $(QUIET_MSGFMT1) + $(QUIET_MSGFMT0)$(MSGFMT) --tcl -l $(basename $(notdir $<)) -d $(dir $@) $< $(QUIET_MSGFMT1) lib/tclIndex: $(ALL_LIBFILES) generate-tclindex.sh GIT-GUI-BUILD-OPTIONS $(QUIET_INDEX)$(SHELL_PATH) generate-tclindex.sh . ./GIT-GUI-BUILD-OPTIONS $(ALL_LIBFILES)