mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
2nd attempt to use uniform java library location under bin #7406
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b65afd41ed
commit
30b4fe69e4
|
@ -375,7 +375,7 @@ def cp_into_bin(arch):
|
||||||
os.path.join(bin_dir, "libz3.lib"))
|
os.path.join(bin_dir, "libz3.lib"))
|
||||||
shutil.rmtree(lib_dir)
|
shutil.rmtree(lib_dir)
|
||||||
if JAVA_ENABLED:
|
if JAVA_ENABLED:
|
||||||
java_dir = get_java_dist_path(arch)
|
java_dir = os.path.join(bin_dir, "java")
|
||||||
for file in os.listdir(java_dir):
|
for file in os.listdir(java_dir):
|
||||||
src_path = os.path.join(java_dir, file)
|
src_path = os.path.join(java_dir, file)
|
||||||
dst_path = os.path.join(bin_dir, file)
|
dst_path = os.path.join(bin_dir, file)
|
||||||
|
|
Loading…
Reference in a new issue