mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
Merge pull request #1869 from nabice/master
Ignore current dir when searching for jni
This commit is contained in:
commit
5f4da31b19
|
@ -396,7 +396,7 @@ def check_java():
|
|||
libdirs = m.group(1).split(',')
|
||||
for libdir in libdirs:
|
||||
q = os.path.dirname(libdir)
|
||||
if cdirs.count(q) == 0:
|
||||
if cdirs.count(q) == 0 and len(q) > 0:
|
||||
cdirs.append(q)
|
||||
t.close()
|
||||
|
||||
|
|
Loading…
Reference in a new issue