summaryrefslogtreecommitdiff
path: root/git-gui/Makefile
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2008-03-06 00:18:23 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2008-03-06 00:18:23 -0800
commit891e85a0c08e12d3f6174d8eb10b4ef284c4b01b (patch)
treed190f2639705455b18997d4d56ea4c68ae05fc36 /git-gui/Makefile
parentFix 'git remote show' regression on empty repository in 1.5.4 (diff)
parentgit-gui: Gracefully fall back to po2msg.sh if msgfmt --tcl fails (diff)
downloadtgif-891e85a0c08e12d3f6174d8eb10b4ef284c4b01b.tar.xz
Merge branch 'maint' of git://repo.or.cz/git-gui into maint
* 'maint' of git://repo.or.cz/git-gui: git-gui: Gracefully fall back to po2msg.sh if msgfmt --tcl fails
Diffstat (limited to 'git-gui/Makefile')
-rw-r--r--git-gui/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/git-gui/Makefile b/git-gui/Makefile
index 01e0a46ba5..4e321742ab 100644
--- a/git-gui/Makefile
+++ b/git-gui/Makefile
@@ -224,6 +224,11 @@ else
ifeq ($(shell $(MSGFMT) >/dev/null 2>&1 || echo $$?),127)
MSGFMT := $(TCL_PATH) po/po2msg.sh
endif
+ ifeq (msgfmt,$(MSGFMT))
+ ifeq ($(shell $(MSGFMT) --tcl -l C -d . /dev/null 2>/dev/null || echo $?),1)
+ MSGFMT := $(TCL_PATH) po/po2msg.sh
+ endif
+ endif
endif
msgsdir = $(gg_libdir)/msgs