diff options
| author | Marius Seritan <[email protected]> | 2015-10-11 16:46:26 -0700 |
|---|---|---|
| committer | Marius Seritan <[email protected]> | 2015-12-24 10:12:13 -0800 |
| commit | a7f60f46833ffcdd17e4bb9e16fe0297cf8079e5 (patch) | |
| tree | 74f4651c8f46799c853043d2002b46b57f638bf4 | |
| parent | Update README.md (diff) | |
| download | rust-openssl-a7f60f46833ffcdd17e4bb9e16fe0297cf8079e5.tar.xz rust-openssl-a7f60f46833ffcdd17e4bb9e16fe0297cf8079e5.zip | |
Update README.md.
Use the brew --prefix command instead of hardcoding paths.
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |