Skip to content

Commit 7782fa8

Browse files
committed
fix wolfssl_inc_path w/o USE_LOCAL_WOLFSSL
1 parent 3c38346 commit 7782fa8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wolfssl/_build_wolfssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def local_path(path):
4141
def wolfssl_inc_path():
4242
wolfssl_path = os.environ.get("USE_LOCAL_WOLFSSL")
4343
if wolfssl_path is None:
44-
return local_path("lib/wolfssl/src")
44+
return local_path("lib/wolfssl")
4545
else:
4646
if os.path.isdir(wolfssl_path) and os.path.exists(wolfssl_path):
4747
return wolfssl_path + "/include"

0 commit comments

Comments
 (0)