diff options
| author | Ruby | 2015-03-16 21:23:57 +0700 | 
|---|---|---|
| committer | Mike McQuaid | 2015-03-17 09:38:49 +0000 | 
| commit | cb92c9b1beac8dc774a75f0d0aae6bb85baa7ab3 (patch) | |
| tree | 326cbfd23302eedc7cf81b33e248309dee36856c | |
| parent | 20b4b344e69f14aa1ce6ba2ec76f0413a3c290fc (diff) | |
| download | homebrew-cb92c9b1beac8dc774a75f0d0aae6bb85baa7ab3.tar.bz2 | |
nspr: make keg-only.
For details, please see
https://bugzilla.mozilla.org/show_bug.cgi?id=1142646
Closes #37766.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/nspr.rb | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Formula/nspr.rb b/Library/Formula/nspr.rb index 9f35741d0..93c382806 100644 --- a/Library/Formula/nspr.rb +++ b/Library/Formula/nspr.rb @@ -4,6 +4,7 @@ class Nspr < Formula    homepage "https://developer.mozilla.org/docs/Mozilla/Projects/NSPR"    url "https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v4.10.8/src/nspr-4.10.8.tar.gz"    sha256 "507ea57c525c0c524dae4857a642b4ef5c9d795518754c7f83422d22fe544a15" +  revision 1    bottle do      cellar :any @@ -12,6 +13,13 @@ class Nspr < Formula      sha1 "ceb1c3a8693af7726f5e9dceb3697dfcb9f616be" => :mountain_lion    end +  keg_only <<-EOS.undent +    Having this library symlinked makes Firefox pick it up instead of built-in, +    so it then randomly crashes without meaningful explanation. + +    Please see https://bugzilla.mozilla.org/show_bug.cgi?id=1142646 for details. +  EOS +    def install      ENV.deparallelize      cd "nspr" do  | 
