From 6d57b3f4b936065fa291cc10024f3fe2d62a406a Mon Sep 17 00:00:00 2001 From: Jacob Krall Date: Fri, 30 Oct 2015 22:43:39 -0400 Subject: [PATCH] Formula cookbook: PolarSSL was renamed to mbedtls See 29bc61e9163e43931ff4736fa3cefaff1918f153 Closes Homebrew/homebrew#45533. Signed-off-by: Dominyk Tiller --- share/doc/homebrew/Formula-Cookbook.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/doc/homebrew/Formula-Cookbook.md b/share/doc/homebrew/Formula-Cookbook.md index d5ad7a124f..ac6f8a85ee 100644 --- a/share/doc/homebrew/Formula-Cookbook.md +++ b/share/doc/homebrew/Formula-Cookbook.md @@ -209,9 +209,9 @@ A Hash specifies a formula dependency with some additional information. Given a Sometimes there’s hard conflict between formulae, and it can’t be avoided or circumvented with `keg_only`. -PolarSSL is a good [example](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/polarssl.rb) formula for minor conflict. +`mbedtls` is a good [example](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/mbedtls.rb) formula for minor conflict. -PolarSSL ship and compile a "Hello World" executable. This is obviously non-essential to PolarSSL’s functionality, and conflict with the popular GNU `hello` formula would be overkill, so we just remove it. +`mbedtls` ships and compiles a "Hello World" executable. This is obviously non-essential to `mbedtls`’s functionality, and conflict with the popular GNU `hello` formula would be overkill, so we just remove it. [pdftohtml](https://github.com/Homebrew/homebrew/blob/master/Library/Formula/pdftohtml.rb) provides an example of a serious conflict, where both formula ship a identically-named binary that is essential to functionality, so a `conflicts_with` is preferable.