mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
attempt to use uniform java library location under bin #7406
This commit is contained in:
parent
5413018d86
commit
b65afd41ed
|
@ -376,9 +376,10 @@ def cp_into_bin(arch):
|
||||||
shutil.rmtree(lib_dir)
|
shutil.rmtree(lib_dir)
|
||||||
if JAVA_ENABLED:
|
if JAVA_ENABLED:
|
||||||
java_dir = get_java_dist_path(arch)
|
java_dir = get_java_dist_path(arch)
|
||||||
shutil.copytree(java_dir,
|
for file in os.listdir(java_dir):
|
||||||
bin_dir,
|
src_path = os.path.join(java_dir, file)
|
||||||
dirs_exist_ok=True)
|
dst_path = os.path.join(bin_dir, file)
|
||||||
|
shutil.copy2(src_path, dst_path)
|
||||||
shutil.rmtree(java_dir)
|
shutil.rmtree(java_dir)
|
||||||
|
|
||||||
def cp_pdb(arch):
|
def cp_pdb(arch):
|
||||||
|
|
Loading…
Reference in a new issue