Skip to content

Commit

Permalink
Merge branch 'maint' of git://repo.or.cz/git-gui into maint
Browse files Browse the repository at this point in the history
* 'maint' of git://repo.or.cz/git-gui:
  git-gui: Gracefully fall back to po2msg.sh if msgfmt --tcl fails
  • Loading branch information
Junio C Hamano committed Mar 6, 2008
2 parents 52dce39 + 2162306 commit 891e85a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions git-gui/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 891e85a

Please sign in to comment.