git-gui (MinGW): make use of MSys2's msgfmt

When Git for Windows was still based on MSys1, we had no gettext, ergo no msgfmt, either. Therefore, we introduced a small and simple Tcl script to perform the same task. However, with MSys2, we no longer need that because we have a proper msgfmt executable. Plus, the po2msg.sh script somehow manages to hang when run in parallel in Git for Windows' SDK (symptom: the Continuous Testing tasks timing out). Two reasons to use real msgfmt.exe instead. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Jul 25, 2017 at 10:35 UTC 492595cfc70f97cd99d4c460db1ba01b73dab932
1 file changed +2
Makefile
+2
@@ -161,7 +161,9 @@ ifeq ($(uname_S),Darwin)
161 endif
162 endif
163 ifneq (,$(findstring MINGW,$(uname_S)))
164 +ifeq ($(shell expr "$(uname_R)" : '1\.'),2)
165 NO_MSGFMT=1
166 +endif
167 GITGUI_WINDOWS_WRAPPER := YesPlease
168 GITGUI_RELATIVE := 1
169 endif