From 660b688e885bd6fcc95f908225c1f59290065d37 Mon Sep 17 00:00:00 2001
From: Jannis Konrad <kabel42@gmail.com>
Date: Wed, 26 Apr 2017 11:16:29 +0200
Subject: [PATCH] tinydtls needs autoconf and autoheader, not autoreconf

---
 setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 0cbbc3f..68a75d5 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,8 @@ class prepare_tinydtls(build_ext):
             print("Running:", " ".join(args))
             subprocess.check_call(args, cwd="./tinydtls")
         commands = [
-            ["autoreconf", "-i"],
+            ["autoconf"],
+            ["autoheader"],
             ["./configure", "--without-ecc"],
             ]
         for command in commands:
-- 
GitLab