aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMichiel Missotten2013-09-20 10:41:37 +0200
committerMike McQuaid2013-09-20 09:57:54 +0100
commit6b2612d704d72a25c4573ea64d018a1bccc2255e (patch)
tree63ae9f9912949e495963a38b14795b876b8b0821 /Library/Formula
parentc5de7437a458dbb8ad066fdcd9f6ffee4bb75747 (diff)
downloadhomebrew-6b2612d704d72a25c4573ea64d018a1bccc2255e.tar.bz2
play: remove <2.2.0 hack.
Closes #22700. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/play.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/Library/Formula/play.rb b/Library/Formula/play.rb
index 13eb808f4..4c21b728f 100644
--- a/Library/Formula/play.rb
+++ b/Library/Formula/play.rb
@@ -13,16 +13,6 @@ class Play < Formula
rm Dir['*.bat']
rm Dir["#{buildpath}/**/*.bat"] if build.head?
- # apply workaround for relative symlink, remove block when stable version reaches 2.2.x.
- # https://github.com/playframework/playframework/issues/1516
- # https://github.com/playframework/playframework/pull/777
- if build.stable?
- inreplace buildpath/"play" do |s|
- s.gsub! "$dir/", "$dir/../libexec/"
- s.gsub! "dir=`dirname $PRG`", "dir=`dirname $0` && dir=$dir/`dirname $PRG`"
- end
- end
-
libexec.install Dir['*']
bin.install_symlink libexec/'play'
end