git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gitk: Handle msysGit version during version comparisons
@ 2009-05-18 21:46 Pat Thoyts
  2009-05-18 22:57 ` Paul Mackerras
  2009-05-19  8:43 ` Johannes Schindelin
  0 siblings, 2 replies; 5+ messages in thread
From: Pat Thoyts @ 2009-05-18 21:46 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: git, Johannes Schindelin


  msysGit generates version strings with text appended which cannot
  be used with vcompare. Limit git_version to the first three digits
  which are the real git version.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
---
 gitk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gitk b/gitk
index 0804e6e..1855390 100755
--- a/gitk
+++ b/gitk
@@ -11152,7 +11152,7 @@ set nullid2 "0000000000000000000000000000000000000001"
 set nullfile "/dev/null"
 
 set have_tk85 [expr {[package vcompare $tk_version "8.5"] >= 0}]
-set git_version [lindex [exec git version] end]
+set git_version [join [lrange [split [lindex [exec git version] end] .] 0 2] .]
 
 set runq {}
 set history {}
-- 
1.6.3.msysgit.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-05-19 10:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-18 21:46 [PATCH] gitk: Handle msysGit version during version comparisons Pat Thoyts
2009-05-18 22:57 ` Paul Mackerras
2009-05-19  8:43 ` Johannes Schindelin
2009-05-19  8:51   ` Michael J Gruber
2009-05-19 10:38     ` Pat Thoyts

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).