diff options
author | Joe George <joe@zeroc.com> | 2016-10-04 10:02:39 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-10-04 10:02:39 -0400 |
commit | 018fc1938d5653e2a3b62455eb5223666465ff48 (patch) | |
tree | 5232e2acc81c8dbfa38afb1f4bf11ffe11949a25 /scripts/TestUtil.py | |
parent | Fix ICE-7384 - Wrong db.jar path in CLASSPATH (diff) | |
download | ice-018fc1938d5653e2a3b62455eb5223666465ff48.tar.bz2 ice-018fc1938d5653e2a3b62455eb5223666465ff48.tar.xz ice-018fc1938d5653e2a3b62455eb5223666465ff48.zip |
Fix typo in previous commit
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 6f90c0bca94..a6e7b0b7136 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1986,7 +1986,7 @@ def getTestEnv(lang, testdir): elif isDarwin(): if os.path.exists('/usr/local/opt/berkeley-db53/lib'): addClasspath(os.path.join("/", "usr", "local", "opt", "berkeley-db53", "lib", "db.jar"), env) - elif: os.path.exists('/usr/local/opt/ice/libexec/lib'): + elif os.path.exists('/usr/local/opt/ice/libexec/lib'): addClasspath(os.path.join("/", "usr", "local", "opt", "ice", "libexec", "lib", "db.jar"), env) else: addClasspath(os.path.join("/", "usr", "share", "java", "db.jar"), env) |