Update README.md.

Use the brew --prefix command instead of hardcoding paths.
This commit is contained in:
Marius Seritan 2015-10-11 16:46:26 -07:00 committed by Marius Seritan
parent bd738fa5d8
commit a7f60f4683
1 changed files with 2 additions and 2 deletions

View File

@ -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