Changes between Initial Version and Version 1 of Ticket #52703, comment 2
- Timestamp:
- Dec 1, 2016, 7:57:34 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #52703, comment 2
initial v1 5 5 https://github.com/git/git-scm.com/issues/853 6 6 7 Seems related to a broken version of Tk 8.5 that shipped with Sierra. I worked around this by installing Tk 8.6.6 via MacPorts, and then reinstalling Git:7 Seems related to a broken version of Tk 8.5 that shipped with Sierra. I worked around this by installing Tk 8.6.6 via MacPorts, and then forcing `Git Gui.app` to use the MacPorts version of `wish` (similar to what is described in the above links): 8 8 {{{ 9 sudo port uninstall git 10 sudo port install tk 11 sudo port install git 9 port install tk +quartz 10 cd /opt/local/share/git-gui/lib/Git\ Gui.app/Contents/MacOS 11 mv Wish Wish.bak 12 ln -s /opt/local/bin/wish Wish 12 13 }}} 13 So far it seems to be working again. 14 15 Note: I previously tried simply rebuilding `git` via MacPorts after installing `tk` but this was insufficient. The `Git Gui.app` created during the build contains a `Wish` binary that links with the broken system `Tk.framework`. So I ended up symlinking in the MacPorts built version instead.