1
0
Fork 0
mirror of https://github.com/fastogt/pyfastogt synced 2025-03-09 23:38:55 +00:00

ldconfig after make install

This commit is contained in:
topilski 2017-06-03 08:25:48 +03:00
parent 51558c02eb
commit 607e77b2d0

View file

@ -112,6 +112,8 @@ def build_command_configure(compiler_flags: CompileInfo, source_dir_path, prefix
subprocess.call(compile_cmd) subprocess.call(compile_cmd)
subprocess.call(['make', '-j2']) subprocess.call(['make', '-j2'])
subprocess.call(['make', 'install']) subprocess.call(['make', 'install'])
if shutil.which('ldconfig'):
subprocess.call(['ldconfig'])
def build_from_sources(url, compiler_flags: CompileInfo, source_dir_path, prefix_path, executable='./configure'): def build_from_sources(url, compiler_flags: CompileInfo, source_dir_path, prefix_path, executable='./configure'):