]> git.ipfire.org Git - thirdparty/git.git/commitdiff
git-gui: drop msgfmt --statistics output
authorHarald Nordgren <haraldnordgren@gmail.com>
Sat, 20 Jun 2026 22:46:10 +0000 (22:46 +0000)
committerJohannes Sixt <j6t@kdbg.org>
Sun, 21 Jun 2026 09:40:55 +0000 (11:40 +0200)
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 <haraldnordgren@gmail.com>
[j6t: adjust commit message]
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Makefile

index d33204e875359cdfca9f83305c68fa5af2e1525d..48d848a59dfbedc156fb495529dd7bb622fe3226 100644 (file)
--- 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)