summaryrefslogtreecommitdiff
path: root/demoscript/Util.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2013-09-17 12:00:14 +0200
committerBenoit Foucher <benoit@zeroc.com>2013-09-17 12:00:14 +0200
commit9cc11906dbbe7516ed0c542bf735dd5d9fe5cc45 (patch)
tree63f8891f328d99c57d955a59172d73e7aa2de5b6 /demoscript/Util.py
parentBetter fix for ICE-5426 - use bytearray() instead of xrange/range to create b... (diff)
downloadice-9cc11906dbbe7516ed0c542bf735dd5d9fe5cc45.tar.bz2
ice-9cc11906dbbe7516ed0c542bf735dd5d9fe5cc45.tar.xz
ice-9cc11906dbbe7516ed0c542bf735dd5d9fe5cc45.zip
Fixed ICE-5431 - set LD_LIBRARY_PATH on Linux/x86_64
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r--demoscript/Util.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py
index 73b5add8f69..7c70a39384c 100644
--- a/demoscript/Util.py
+++ b/demoscript/Util.py
@@ -748,10 +748,7 @@ def addLdPath(libpath):
else:
addenv("LD_LIBRARY_PATH", libpath)
else:
- if x64:
- addenv("LD_LIBRARY_PATH_64", libpath)
- else:
- addenv("LD_LIBRARY_PATH", libpath)
+ addenv("LD_LIBRARY_PATH", libpath)
def processCmdLine():
def usage():