diff options
author | Jose <jose@zeroc.com> | 2015-07-31 17:55:10 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-07-31 17:55:10 +0200 |
commit | 5a5a9385859fb08e48c143dec3b1ec05e126c3d8 (patch) | |
tree | 5c4ec589da38b9493b1ba2a80f5a9b8519772534 /scripts/TestUtil.py | |
parent | Updated version in js/package.json (diff) | |
download | ice-5a5a9385859fb08e48c143dec3b1ec05e126c3d8.tar.bz2 ice-5a5a9385859fb08e48c143dec3b1ec05e126c3d8.tar.xz ice-5a5a9385859fb08e48c143dec3b1ec05e126c3d8.zip |
Fix for Windows Berkeley DB env
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 157645b91c7..ee274faba66 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1764,7 +1764,7 @@ def getJavaLibraryPath(): return "-Djava.library.path=\"%s\" " % os.path.join(iceHome, "bin\\x64" if x64 else "bin") else: return ("-Djava.library.path=\"%s\" " % os.path.join(getIceDir("cpp"), "third-party-packages", - "berkeley.db.java7.5.3.28.0", "build", "native", "bin", "x64" if x64 else "Win32")) + "berkeley.db.java7", "build", "native", "bin", "x64" if x64 else "Win32")) elif isDarwin(): if os.path.exists('/usr/local/opt/ice/libexec/lib'): return "-Djava.library.path=/usr/local/opt/ice/libexec/lib " |