mirror of
https://github.com/fastogt/pyfastogt
synced 2025-03-09 23:38:55 +00:00
+x for exec file
This commit is contained in:
parent
32a9b71d46
commit
5034f903b6
1 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
import errno
|
import errno
|
||||||
import os
|
import os
|
||||||
|
import stat
|
||||||
import re
|
import re
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
|
@ -110,6 +111,9 @@ def extract_file(path, current_dir):
|
||||||
def build_command_configure(compiler_flags: CompileInfo, source_dir_path, prefix_path, executable='./configure'):
|
def build_command_configure(compiler_flags: CompileInfo, source_dir_path, prefix_path, executable='./configure'):
|
||||||
# patches
|
# patches
|
||||||
script_dir = os.path.dirname(source_dir_path)
|
script_dir = os.path.dirname(source_dir_path)
|
||||||
|
# +x for exec file
|
||||||
|
st = os.stat(executable)
|
||||||
|
os.chmod(executable, st.st_mode | stat.S_IEXEC)
|
||||||
|
|
||||||
for file_names in compiler_flags.patches():
|
for file_names in compiler_flags.patches():
|
||||||
scan_dir = os.path.join(script_dir, file_names)
|
scan_dir = os.path.join(script_dir, file_names)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue