Tentative moving of dependency libraries over 'program' folder - again.
This commit is contained in:
parent
b79c47eb7b
commit
88ede4cb5b
|
@ -586,10 +586,10 @@ class Build():
|
|||
|
||||
# We are finally copying the .so files in the same path as main_executable
|
||||
subprocess.run(shlex.split(
|
||||
f"cp -r * {os.path.dirname(main_executable)}"
|
||||
f"cp -fr * {os.path.dirname(main_executable)}/"
|
||||
), cwd = os.path.abspath(os.path.join(temporary, '/lib/x86_64-linux-gnu')), shell=True, check=True)
|
||||
subprocess.run(shlex.split(
|
||||
f"cp -r * {os.path.dirname(main_executable)}"
|
||||
f"cp -r * {os.path.dirname(main_executable)}/"
|
||||
), cwd = os.path.abspath(os.path.join(temporary, '/usr/lib/x86_64-linux-gnu')), shell=True, check=True)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue