Skip to content
Snippets Groups Projects
Commit ee8e3607 authored by Donald Stufft's avatar Donald Stufft
Browse files

Merge pull request #50 from dstufft/fix-packaging

Ensure that our configure script has permissions
parents 413c06c3 dec8bac9
No related branches found
No related tags found
No related merge requests found
...@@ -148,6 +148,9 @@ class build_clib(_build_clib): ...@@ -148,6 +148,9 @@ class build_clib(_build_clib):
# Locate our configure script # Locate our configure script
configure = here("src/libsodium/configure") configure = here("src/libsodium/configure")
# Ensure the configure script is executable
os.chmod(configure, 0o755)
# Run ./configure # Run ./configure
subprocess.check_call( subprocess.check_call(
[ [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment