git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* gitk doesn't start due to cygwin wish not following symlinks?
@ 2007-07-03 19:02 Kees-Jan Dijkzeul
  2007-07-06  9:33 ` Jan Hudec
  0 siblings, 1 reply; 2+ messages in thread
From: Kees-Jan Dijkzeul @ 2007-07-03 19:02 UTC (permalink / raw)
  To: git

Hi,

I'm using "stow" to manage several versions of git on my cygwin
system. As a result, my /usr/local/bin contains a bunch of symlinks to
the actual binaries in /usr/local/stow/git-1.5.2.2/bin.

This works like a charm, except that gitk won't start up, claiming, in
turn, that it is unable to start git itself. After some investigation,
I found that the "wish" that is supplied with cygwin isn't a true
cygwin one, and hence doesn't understand cygwin style simlinks, and
thus cannot start the /usr/local/bin/git symlink. It needs the true
binary.

So for now, I've worked around this by updating the first few lines of
the gitk script to read:

   #!/bin/sh
   # Tcl ignores the next line -*- tcl -*- \
   export PATH=$PATH:/usr/local/stow/git-1.5.2.2/bin
   # Tcl ignores the next line also \
   exec wish "$0" -- "$@"

This works for me, but is admittedly butt-ugly. Any tips on how to
handle this kind of situation?

Thanks a lot!

Groetjes,

Kees-Jan

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

end of thread, other threads:[~2007-07-06  9:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-03 19:02 gitk doesn't start due to cygwin wish not following symlinks? Kees-Jan Dijkzeul
2007-07-06  9:33 ` Jan Hudec

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).