From 9846aafc51833801cff33fa5fc2b01362850cd0a Mon Sep 17 00:00:00 2001 From: Jannis Konrad <kabel42@gmail.com> Date: Sun, 28 May 2023 21:31:52 +0200 Subject: [PATCH] fix, build silently dropped flag --without-ecc --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 50f97d1..31da3ce 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ class prepare_tinydtls(build_ext): commands = [ ["sh", "-c", "autoconf"], ["sh", "-c", "autoheader"], - ["sh", "-c", "./configure", "--without-ecc"], + ["sh", "-c", "./configure --without-ecc"], ] if not os.path.exists(os.path.join(os.path.dirname(__file__), 'DTLSSocket','tinydtls','dtls.c')): run_command(["git", "submodule", "update", "--init"]) -- GitLab