gitk: remove workaround for missing msgfmt

In the meantime, gitk's Makefile has learnt to detect the absence of
msgfmt and use the drop-in replacement in Tcl (which was developed
for msysGit, but has been adopted both by gitk and git-gui).

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin
2009-02-19 20:25:13 +01:00
committed by Johannes Sixt
parent d8f0692f7a
commit 3fb2564c94

View File

@@ -19,10 +19,6 @@ TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
## po-file creation rules
XGETTEXT ?= xgettext
uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
ifneq (,$(findstring MINGW,$(uname_S)))
NO_MSGFMT=1
endif
ifdef NO_MSGFMT
MSGFMT ?= $(TCL_PATH) po/po2msg.sh
else