From dec8bac9e5d9bf7ce143770014ac05082c3ffa11 Mon Sep 17 00:00:00 2001
From: Donald Stufft <donald@stufft.io>
Date: Mon, 28 Oct 2013 11:08:19 -0400
Subject: [PATCH] Ensure that our configure script has permissions

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

diff --git a/setup.py b/setup.py
index 336b1e42..e9aa1d73 100644
--- a/setup.py
+++ b/setup.py
@@ -148,6 +148,9 @@ class build_clib(_build_clib):
         # Locate our configure script
         configure = here("src/libsodium/configure")
 
+        # Ensure the configure script is executable
+        os.chmod(configure, 0o755)
+
         # Run ./configure
         subprocess.check_call(
             [
-- 
GitLab