summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-10-04 10:02:39 -0400
committerJoe George <joe@zeroc.com>2016-10-04 10:02:39 -0400
commit018fc1938d5653e2a3b62455eb5223666465ff48 (patch)
tree5232e2acc81c8dbfa38afb1f4bf11ffe11949a25
parentFix ICE-7384 - Wrong db.jar path in CLASSPATH (diff)
downloadice-018fc1938d5653e2a3b62455eb5223666465ff48.tar.bz2
ice-018fc1938d5653e2a3b62455eb5223666465ff48.tar.xz
ice-018fc1938d5653e2a3b62455eb5223666465ff48.zip
Fix typo in previous commit
-rwxr-xr-xscripts/TestUtil.py2
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)