diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-03 11:28:07 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-03 11:28:07 -0400 |
commit | 05db69f2a4c86b1e43a7af70a95e1a223982f658 (patch) | |
tree | 3d7eec05c03189b26662213d1add644fbc0eceb3 | |
parent | b69aa4cdacb6e85845f590e528f7e9a471d7dd36 (diff) | |
parent | 91596e24e042a83750a327e1dd6a84d243fe2a47 (diff) | |
download | cryptography-05db69f2a4c86b1e43a7af70a95e1a223982f658.tar.gz cryptography-05db69f2a4c86b1e43a7af70a95e1a223982f658.tar.bz2 cryptography-05db69f2a4c86b1e43a7af70a95e1a223982f658.zip |
Merge pull request #2191 from tdsmith/patch-1
Make Homebrew install instructions more generic
-rw-r--r-- | docs/installation.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/installation.rst b/docs/installation.rst index becab6b0..f7a88b98 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -142,7 +142,7 @@ To link cryptography against a custom version of OpenSSL you'll need to set .. code-block:: console $ brew install openssl - $ env ARCHFLAGS="-arch x86_64" LDFLAGS="-L/usr/local/opt/openssl/lib" CFLAGS="-I/usr/local/opt/openssl/include" pip install cryptography + $ env ARCHFLAGS="-arch x86_64" LDFLAGS="-L$(brew --prefix openssl)/lib" CFLAGS="-I$(brew --prefix openssl)/include" pip install cryptography or `MacPorts`_: |