From 975e799969ee2447c5c6760477d2177c70315188 Mon Sep 17 00:00:00 2001 From: "Watal M. Iwasaki" Date: Sat, 23 Jul 2022 18:23:05 +0900 Subject: [PATCH 1/2] Remove reference to `--enable-bar` that does not exist --- docs/FAQ.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index e9325489a9..4d55531131 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -78,7 +78,6 @@ Homebrew provides pre-built binary packages for many formulae. These are referre If available, bottled binaries will be used by default except under the following conditions: -* Options were passed to the install command, i.e. `brew install ` will use a bottled version of the formula, but `brew install --enable-bar ` will trigger a source build. * The `--build-from-source` option is invoked. * No bottle is available for the machine's currently running OS version. (Bottles for macOS are generated only for supported macOS versions.) * Homebrew is installed to a prefix other than the default (although some bottles support this). From 4e29ed4c170f70db115af834b65482160a625c98 Mon Sep 17 00:00:00 2001 From: "Watal M. Iwasaki" Date: Sun, 24 Jul 2022 07:53:33 +0900 Subject: [PATCH 2/2] Restore the remove line, and make it less confusing --- docs/FAQ.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/FAQ.md b/docs/FAQ.md index 4d55531131..6d37d8a629 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -81,6 +81,7 @@ If available, bottled binaries will be used by default except under the followin * The `--build-from-source` option is invoked. * No bottle is available for the machine's currently running OS version. (Bottles for macOS are generated only for supported macOS versions.) * Homebrew is installed to a prefix other than the default (although some bottles support this). +* Formula options were passed to the install command. For example, `brew install ` will try to find a bottled binary, but `brew install --with-foo ` will trigger a source build. We aim to bottle everything.