You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by cu...@apache.org on 2019/05/18 21:01:47 UTC

[whimsy] branch master updated: Corrections for order of homebrew reinstalls

This is an automated email from the ASF dual-hosted git repository.

curcuru pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b8591c  Corrections for order of homebrew reinstalls
5b8591c is described below

commit 5b8591c4b93ad2a558d4f8da712b0130e6883cfc
Author: Shane Curcuru <as...@shanecurcuru.org>
AuthorDate: Sat May 18 17:01:42 2019 -0400

    Corrections for order of homebrew reinstalls
---
 MACOSX.md | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/MACOSX.md b/MACOSX.md
index 79a65e1..52b3a5f 100644
--- a/MACOSX.md
+++ b/MACOSX.md
@@ -96,11 +96,11 @@ index bc6bde9fe..710265ec1 100644
        --enable-unique
        --enable-valsort
 ```
-Now have Homebrew actually install the updated modules:
+Now have Homebrew actually install the updated modules; note the -s --build-from-source flag:
 
 ```
-brew install apr-util
-brew install openldap
+brew install -s apr-util
+brew install -s openldap
 ```
 
 
@@ -263,7 +263,7 @@ Notes:
 Install Apache httpd
 ------------------
 
-Running Whimsy tools locally depends on httpd.  Apple provides a copy of httpd that has [known problems](https://github.com/phusion/passenger/issues/1986), so installing a separate copy of httpd is recommended.  An optional later step in this process will forward traffic based on the hostname.
+Running Whimsy tools locally depends on httpd.  Apple provides a copy of httpd that has [known problems](https://github.com/phusion/passenger/issues/1986), so installing a separate copy of httpd from homebrew is recommended.  An optional later step in this process will forward traffic based on the hostname.
 
 Install with LDAP support:
 
@@ -273,6 +273,7 @@ brew install openldap # --with-sssvlv
 brew reinstall -s apr-util # --with-openldap
 brew reinstall -s apache-httpd
 ```
+Note: if you encounter problems, double-check that the edits made to homebrew-core/Formula/* you made earlier are still there; if you happened to brew update, they may get overwritten.
 
 Install passenger
 -------------------