From a7f60f46833ffcdd17e4bb9e16fe0297cf8079e5 Mon Sep 17 00:00:00 2001 From: Marius Seritan Date: Sun, 11 Oct 2015 16:46:26 -0700 Subject: [PATCH] Update README.md. Use the brew --prefix command instead of hardcoding paths. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 87ca998b..fe07ddbe 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,8 @@ For OSX 10.11 you can use brew to install OpenSSL and then set the environment v as described below. ```bash brew install openssl -export OPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include -export OPENSSL_LIB_DIR=/usr/local/opt/openssl/lib +export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include +export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib ``` ### Windows