From e82e94411548c2e808bc10c9e93b46c54bc9a31c Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Sun, 10 Nov 2013 20:57:39 -0800 Subject: [PATCH] jython: dereference the jython symlink ahead of time Closes Homebrew/homebrew#22302. --- Formula/jython.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Formula/jython.rb b/Formula/jython.rb index 0c21cd5382..7e78841375 100644 --- a/Formula/jython.rb +++ b/Formula/jython.rb @@ -13,6 +13,7 @@ class Jython < Formula def install system "java", "-jar", cached_download, "-s", "-d", libexec + inreplace libexec/'bin/jython', 'PRG=$0', "PRG=#{libexec}/bin/jython" bin.install_symlink libexec/'bin/jython' end end