diff options
| author | Dominyk Tiller | 2016-09-14 20:55:13 +0100 |
|---|---|---|
| committer | Dominyk Tiller | 2016-09-14 20:56:28 +0100 |
| commit | da3e98070bdba967c14543afce8785d6ba20b5d0 (patch) | |
| tree | d715032cca9c574bcbf108f1bba315c5caf44591 | |
| parent | de283d81c5a27860f80803ffe9103c4eed177243 (diff) | |
| download | brew-da3e98070bdba967c14543afce8785d6ba20b5d0.tar.bz2 | |
Formula-Cookbook: tweak :run explanation
| -rw-r--r-- | share/doc/homebrew/Formula-Cookbook.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/doc/homebrew/Formula-Cookbook.md b/share/doc/homebrew/Formula-Cookbook.md index aaffea5a0..56d566809 100644 --- a/share/doc/homebrew/Formula-Cookbook.md +++ b/share/doc/homebrew/Formula-Cookbook.md @@ -143,9 +143,9 @@ A Hash (e.g. `=>`) specifies a formula dependency with some additional informati - `:optional` generates an implicit `with-foo` option for the formula. This means that, given `depends_on "foo" => :optional`, the user must pass `--with-foo` in order to use the dependency. - `:run` can mean the dependency is only required at run, or it can be used - to declare build dependencies such as `pkg-config` are needed during - runtime as well, which will silence the audit warning. `:run` currently - implies `:build` as well. + to declare build dependencies such as `pkg-config` are needed at + runtime as well, which will silence the audit warning. `:run` dependencies + are currently available at build-time. - `:recommended` generates an implicit `without-foo` option, meaning that the dependency is enabled by default and the user must pass `--without-foo` to disable this dependency. The default |
