diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-11-24 09:43:32 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-11-24 09:43:32 -0330 |
commit | 81d6c193178f42d26cc03c51053072992c5ddae4 (patch) | |
tree | 849a7db2ce81cc107165a0a7542a4f89a7315978 /demoscript/Util.py | |
parent | Fixed java library.path setting on Windows again (diff) | |
download | ice-81d6c193178f42d26cc03c51053072992c5ddae4.tar.bz2 ice-81d6c193178f42d26cc03c51053072992c5ddae4.tar.xz ice-81d6c193178f42d26cc03c51053072992c5ddae4.zip |
Fix for library.path in demo scripts
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r-- | demoscript/Util.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index 27fa89d9d7a..c9c0eeb6286 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -813,11 +813,11 @@ def getJavaLibraryPath(): else: return "-Djava.library.path=\"%s\" " % os.path.join(getThirdpartyHome(), "bin\\x64" if x64 else "bin") elif isDarwin(): - return "-Djava.library.path=\"%s\" " % os.path.join(iceHome if iceHome else getThirdpartyHome(), "lib") + return "-Djava.library.path=%s " % os.path.join(iceHome if iceHome else getThirdpartyHome(), "lib") elif isRhel() or isSles(): - return "-Djava.library.path=\"%s\" " % "/usr/lib64" if x64 else "/usr/lib" + return "-Djava.library.path=%s " % "/usr/lib64" if x64 else "/usr/lib" elif isUbuntu(): - return "-Djava.library.path=\"%s\" " % "/usr/lib/x86_64-linux-gnu" if x64 else "/usr/lib/i386-linux-gnu" + return "-Djava.library.path=%s " % "/usr/lib/x86_64-linux-gnu" if x64 else "/usr/lib/i386-linux-gnu" return None def addLdPath(libpath): |