summaryrefslogtreecommitdiff
path: root/demoscript/Util.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2013-09-12 17:33:00 +0200
committerJose <jose@zeroc.com>2013-09-12 17:33:00 +0200
commitff243a6c07bbf609836b82ee52ef5ee037fce2ae (patch)
tree31b01c2c1a84fb88e160e03d1589072e5fe7999c /demoscript/Util.py
parentmissing import (diff)
downloadice-ff243a6c07bbf609836b82ee52ef5ee037fce2ae.tar.bz2
ice-ff243a6c07bbf609836b82ee52ef5ee037fce2ae.tar.xz
ice-ff243a6c07bbf609836b82ee52ef5ee037fce2ae.zip
Fixed ICE-5420 - invalid DYLD_LIBRARY_PATH settings when running demos with --x64 on OS X
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r--demoscript/Util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py
index 115b1d88cf1..d45c51f7309 100644
--- a/demoscript/Util.py
+++ b/demoscript/Util.py
@@ -162,7 +162,7 @@ def configurePaths():
else:
libDir = os.path.join(libDir, "amd64")
binDir = os.path.join(binDir, "amd64")
- else:
+ elif not isDarwin():
libDir = libDir + "64"
binDir = binDir + "64"
addenv("PATH", binDir)