3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

attempt to use uniform java library location under bin #7406

This commit is contained in:
Nikolaj Bjorner 2024-09-30 08:58:21 -07:00
parent 5413018d86
commit b65afd41ed

View file

@ -376,9 +376,10 @@ def cp_into_bin(arch):
shutil.rmtree(lib_dir)
if JAVA_ENABLED:
java_dir = get_java_dist_path(arch)
shutil.copytree(java_dir,
bin_dir,
dirs_exist_ok=True)
for file in os.listdir(java_dir):
src_path = os.path.join(java_dir, file)
dst_path = os.path.join(bin_dir, file)
shutil.copy2(src_path, dst_path)
shutil.rmtree(java_dir)
def cp_pdb(arch):