Skip to content

Commit 61d2f69

Browse files
committed
Don't do local build if env var set
1 parent d57b7e9 commit 61d2f69

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

wolfssl/_build_ffi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,8 @@ def generate_libwolfssl():
250250
make(make_flags(prefix, False))
251251

252252

253-
if get_libwolfssl() == 0:
253+
local_wolfssl = os.environ.get("USE_LOCAL_WOLFSSL")
254+
if local_wolfssl and get_libwolfssl() == 0:
254255
generate_libwolfssl()
255256
get_libwolfssl()
256257

0 commit comments

Comments
 (0)