summaryrefslogtreecommitdiff
path: root/demoscript/Util.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-12-23 12:52:56 +0100
committerBenoit Foucher <benoit@zeroc.com>2009-12-23 12:52:56 +0100
commit652d3f9252d66b6cfb8c7f8e15c38a048a3a25bc (patch)
treef389673ccf7f03ab59462ea5fa558dd98cf2eae8 /demoscript/Util.py
parentMore edits for release notes (diff)
downloadice-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.py3
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")