From 88ede4cb5b92ca3d11adbba4b2952b57fcb4dbb9 Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Fri, 23 Aug 2024 01:01:22 +0200 Subject: [PATCH] Tentative moving of dependency libraries over 'program' folder - again. --- src/loaih/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/loaih/build.py b/src/loaih/build.py index acc45f8..ba38f6c 100644 --- a/src/loaih/build.py +++ b/src/loaih/build.py @@ -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)