diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-12-23 12:52:56 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-12-23 12:52:56 +0100 |
commit | 652d3f9252d66b6cfb8c7f8e15c38a048a3a25bc (patch) | |
tree | f389673ccf7f03ab59462ea5fa558dd98cf2eae8 /demoscript/Util.py | |
parent | More edits for release notes (diff) | |
download | ice-652d3f9252d66b6cfb8c7f8e15c38a048a3a25bc.tar.bz2 ice-652d3f9252d66b6cfb8c7f8e15c38a048a3a25bc.tar.xz ice-652d3f9252d66b6cfb8c7f8e15c38a048a3a25bc.zip |
Fixed bug 4537 - IceGrid/secure demoscript failure
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r-- | demoscript/Util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index 5af536c8afe..f3c8806cf3a 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -96,6 +96,7 @@ def configurePaths(): # 64-bits binaries are located in a subdirectory with binary # distributions. + addenv("PATH", binDir) if iceHome and x64: if isWin32(): binDir = os.path.join(binDir, "x64") @@ -109,6 +110,7 @@ def configurePaths(): else: libDir = libDir + "64" binDir = binDir + "64" + addenv("PATH", binDir) # Only add the lib directory to the shared library path if we're # not using the embedded location. @@ -117,7 +119,6 @@ def configurePaths(): if not iceHome: addenv("PATH", os.path.join(getIceDir("cs"), "bin")) - addenv("PATH", binDir) javaDir = getIceDir("java") |