diff options
-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) |