Skip to content

Commit 25881e7

Browse files
Massimo Cetratwangboy
authored andcommitted
This addresses the discovery of libcrypto on the latest OSX and the latest brew.
1 parent 4a84820 commit 25881e7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

salt/utils/rsax931.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ def _find_libcrypto():
6868
lib = lib or glob.glob(
6969
os.path.join(brew_prefix, "opt/openssl@*/lib/libcrypto.dylib")
7070
)
71+
lib = lib or glob.glob(
72+
os.path.join(brew_prefix, "lib/libcrypto.dylib")
73+
)
7174

7275
# look in macports.
7376
lib = lib or glob.glob("/opt/local/lib/libcrypto.dylib")

0 commit comments

Comments
 (0)