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

Fix the permissions on all of the libsodium files

parent 093ebfe5
No related branches found
No related tags found
No related merge requests found
......@@ -145,12 +145,25 @@ class build_clib(_build_clib):
except IOError:
pass
# Ensure all of our executanle files have their permission set
for filename in [
"src/libsodium/autogen.sh",
"src/libsodium/compile",
"src/libsodium/config.guess",
"src/libsodium/config.sub",
"src/libsodium/configure",
"src/libsodium/depcomp",
"src/libsodium/install-sh",
"src/libsodium/missing",
"src/libsodium/msvc-scripts/process.bat",
"src/libsodium/test/default/wintest.bat",
"src/libsodium/test-driver",
]:
os.chmod(here(filename), 0o755)
# Locate our configure script
configure = here("src/libsodium/configure")
# Ensure the configure script is executable
os.chmod(configure, 0o755)
# Run ./configure
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