Formula cookbook: PolarSSL was renamed to mbedtls

See 29bc61e9163e43931ff4736fa3cefaff1918f153

Closes Homebrew/homebrew#45533.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Jacob Krall 2015-10-30 22:43:39 -04:00 committed by Dominyk Tiller
parent d7a479f551
commit 6d57b3f4b9

View File

@ -209,9 +209,9 @@ A Hash specifies a formula dependency with some additional information. Given a
Sometimes theres hard conflict between formulae, and it cant 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 PolarSSLs 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.