diff options
author | Jose <jose@zeroc.com> | 2013-09-12 17:33:00 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2013-09-12 17:33:00 +0200 |
commit | ff243a6c07bbf609836b82ee52ef5ee037fce2ae (patch) | |
tree | 31b01c2c1a84fb88e160e03d1589072e5fe7999c /demoscript/Util.py | |
parent | missing import (diff) | |
download | ice-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.py | 2 |
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) |