git: don't replace "lime" with "99ff00" in gitk HEAD build

It appears that this issue was resolved upstream, and that we don't need to do this anymore.

[GitHub] This commit resolves #9202.

Closes #9203.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
master
Kristofer Rye 2017-01-23 09:59:42 -06:00 committed by Alex Dunn
parent dfb18b72d6
commit e600190ff2
1 changed files with 4 additions and 1 deletions

View File

@ -52,7 +52,10 @@ class Git < Formula
# Support Tcl versions before "lime" color name was introduced
# https://github.com/Homebrew/homebrew-core/issues/115
# https://www.mail-archive.com/git%40vger.kernel.org/msg92017.html
inreplace "gitk-git/gitk", "lime", '"#99FF00"'
#
# This has been resolved in Git (6e8fda5fd), which is currently present
# in HEAD but not in the stable. This should be removed later.
inreplace "gitk-git/gitk", "lime", '"#99FF00"' if build.stable?
perl_version = /\d\.\d+/.match(`perl --version`)