Tentative moving of dependency libraries over 'program' folder - again.

This commit is contained in:
emiliano.vavassori 2024-08-23 01:01:22 +02:00
parent b79c47eb7b
commit 88ede4cb5b
1 changed files with 2 additions and 2 deletions

View File

@ -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)