diff options
| author | Adam Vandenberg | 2012-03-15 20:23:08 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-15 20:23:08 -0700 |
| commit | e40f3df5964374a03b7e1589a2adc3ecf4c1e3c0 (patch) | |
| tree | 965cd466036ec4180671c0f9eb4e49a612a48e30 /Library/Formula | |
| parent | 84371b3b22592390edf5588442afa00d06c738dc (diff) | |
| download | homebrew-e40f3df5964374a03b7e1589a2adc3ecf4c1e3c0.tar.bz2 | |
SpiderMonkey: remove an inreplace
This does not seem to be needed in 1.8.5, at least on
Snow Leopard and above.
Closes #10574.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/spidermonkey.rb | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Library/Formula/spidermonkey.rb b/Library/Formula/spidermonkey.rb index 92b13eaea..d5c30dd69 100644 --- a/Library/Formula/spidermonkey.rb +++ b/Library/Formula/spidermonkey.rb @@ -13,15 +13,15 @@ class Spidermonkey < Formula url 'http://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz' version '1.8.5' + # This is terribly, terribly slow the first time. + # head 'https://hg.mozilla.org/tracemonkey', :using => :hg + head 'https://hg.mozilla.org/tracemonkey/archive/tip.tar.gz', :using => :curl + # Don't provide an md5 for the HEAD build unless ARGV.build_head? md5 'a4574365938222adca0a6bd33329cb32' end - # This is terribly, terribly slow the first time. - # head 'https://hg.mozilla.org/tracemonkey', :using => :hg - head 'https://hg.mozilla.org/tracemonkey/archive/tip.tar.gz', :using => :curl - depends_on 'readline' depends_on 'nspr' @@ -43,9 +43,6 @@ class Spidermonkey < Formula end cd "js/src" do - # Fixes a bug with linking against CoreFoundation. Tests all pass after - # building like this. See: http://openradar.appspot.com/7209349 - inreplace "configure.in", "LDFLAGS=\"$LDFLAGS -framework Cocoa\"", "" system "#{ac213_prefix}/bin/autoconf213" # Remove the broken *(for anyone but FF) install_name |
