Skip to content

Commit

Permalink
Update build instructions for homebrew users
Browse files Browse the repository at this point in the history
The location where homebrew installs OpenSSL may change, so query the
installation prefix using `brew --prefix openssl`.

Fixes: #56
  • Loading branch information
jlaine committed Jan 26, 2024
1 parent fac6cfc commit 74e8479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ You will need to set some environment variables to link against OpenSSL:

.. code-block:: console
export CFLAGS=-I/usr/local/opt/openssl/include
export LDFLAGS=-L/usr/local/opt/openssl/lib
export CFLAGS=-I$(brew --prefix openssl)/include
export LDFLAGS=-L$(brew --prefix openssl)/lib
Windows
.......
Expand Down

0 comments on commit 74e8479

Please sign in to comment.