summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorjose <jose@amulet>2016-03-11 22:50:29 +0100
committerjose <jose@amulet>2016-03-11 22:50:29 +0100
commitbe78053ae3b1dbbd08704e8e0cc9d400f05f6417 (patch)
tree60a85703014df525cf364c60eff3c943fc609576 /scripts/TestUtil.py
parentUpdate version to 3.6.2 in several md files (diff)
downloadice-be78053ae3b1dbbd08704e8e0cc9d400f05f6417.tar.bz2
ice-be78053ae3b1dbbd08704e8e0cc9d400f05f6417.tar.xz
ice-be78053ae3b1dbbd08704e8e0cc9d400f05f6417.zip
Minor fix for Debian testing
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index aa6f987ea9b..3ba922de2b7 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -1812,7 +1812,7 @@ def getJavaLibraryPath():
if "LD_LIBRARY_PATH" in os.environ:
libpath = os.environ["LD_LIBRARY_PATH"] + ":" + libpath
return "-Djava.library.path=%s " % libpath
- elif isUbuntu():
+ elif isUbuntu() or isDebian():
libpath = ("/usr/lib/x86_64-linux-gnu" if x64 else "/usr/lib/i386-linux-gnu")
if "LD_LIBRARY_PATH" in os.environ:
libpath = os.environ["LD_LIBRARY_PATH"] + ":" + libpath