diff options
| author | Mike McQuaid | 2018-02-23 19:39:19 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2018-02-23 19:52:00 +0000 | 
| commit | 190e665bb1db54d452ed9e0bf93c6985bd8dab5f (patch) | |
| tree | d7a1a1c8c4ce9189d786f6f44b814afa28cf4a04 /docs/Formula-Cookbook.md | |
| parent | d05b8522d5f51db5ca2f75fe322848df9b8ff88b (diff) | |
| download | brew-190e665bb1db54d452ed9e0bf93c6985bd8dab5f.tar.bz2 | |
Revert "docs: use short links."
This reverts commit e63a2ee8de12f0f938f6a95cdb9763dbe0187b4a.
Closes #3832.
Diffstat (limited to 'docs/Formula-Cookbook.md')
| -rw-r--r-- | docs/Formula-Cookbook.md | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/docs/Formula-Cookbook.md b/docs/Formula-Cookbook.md index f977a8ef0..1f2b2e89e 100644 --- a/docs/Formula-Cookbook.md +++ b/docs/Formula-Cookbook.md @@ -29,7 +29,7 @@ Make sure you run `brew update` before you start. This turns your Homebrew insta  Before submitting a new formula make sure your package: -*   meets all our [Acceptable Formulae](Acceptable-Formulae) requirements +*   meets all our [Acceptable Formulae](Acceptable-Formulae.md) requirements  *   isn't already in Homebrew (check `brew search <formula>`)  *   isn't in another official [Homebrew tap](https://github.com/Homebrew)  *   isn't already waiting to be merged (check the [issue tracker](https://github.com/Homebrew/homebrew-core/pulls)) @@ -37,7 +37,7 @@ Before submitting a new formula make sure your package:  *   has a stable, tagged version (i.e. not just a GitHub repository with no versions)  *   passes all `brew audit --new-formula <formula>` tests. -Before submitting a new formula make sure you read over our [contribution guidelines](https://github.com/Homebrew/brew/blob/master/CONTRIBUTING). +Before submitting a new formula make sure you read over our [contribution guidelines](https://github.com/Homebrew/brew/blob/master/CONTRIBUTING.md).  ### Grab the URL @@ -251,7 +251,7 @@ Check the top of the e.g. `./configure` output. Some configure scripts do not re  ### Add a test to the formula -Add a valid test to the [`test do`](http://www.rubydoc.info/github/Homebrew/brew/master/Formula#test-class_method) block of the formula. This will be run by `brew test foo` and the [Brew Test Bot](Brew-Test-Bot). +Add a valid test to the [`test do`](http://www.rubydoc.info/github/Homebrew/brew/master/Formula#test-class_method) block of the formula. This will be run by `brew test foo` and the [Brew Test Bot](Brew-Test-Bot.md).  The  [`test do`](http://www.rubydoc.info/github/Homebrew/brew/master/Formula#test-class_method) @@ -534,7 +534,7 @@ end  ### Compiler selection -Sometimes a package fails to build when using a certain compiler. Since recent [Xcode versions](Xcode) no longer include a GCC compiler we cannot simply force the use of GCC. Instead, the correct way to declare this is the [`fails_with` DSL method](http://www.rubydoc.info/github/Homebrew/brew/master/Formula#fails_with-class_method). A properly constructed [`fails_with`](http://www.rubydoc.info/github/Homebrew/brew/master/Formula#fails_with-class_method) block documents the latest compiler build version known to cause compilation to fail, and the cause of the failure. For example: +Sometimes a package fails to build when using a certain compiler. Since recent [Xcode versions](Xcode.md) no longer include a GCC compiler we cannot simply force the use of GCC. Instead, the correct way to declare this is the [`fails_with` DSL method](http://www.rubydoc.info/github/Homebrew/brew/master/Formula#fails_with-class_method). A properly constructed [`fails_with`](http://www.rubydoc.info/github/Homebrew/brew/master/Formula#fails_with-class_method) block documents the latest compiler build version known to cause compilation to fail, and the cause of the failure. For example:  ```ruby  fails_with :clang do | 
