From 3fb2564c942a4fd094b47a809921cfef8270fd9f Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 19 Feb 2009 20:25:13 +0100 Subject: [PATCH] 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 --- gitk-git/Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gitk-git/Makefile b/gitk-git/Makefile index 2dda57cbae..e1b6045605 100644 --- a/gitk-git/Makefile +++ b/gitk-git/Makefile @@ -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 -- 2.11.4.GIT