diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-09-17 12:00:14 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-09-17 12:00:14 +0200 |
commit | 9cc11906dbbe7516ed0c542bf735dd5d9fe5cc45 (patch) | |
tree | 63f8891f328d99c57d955a59172d73e7aa2de5b6 /demoscript/Util.py | |
parent | Better fix for ICE-5426 - use bytearray() instead of xrange/range to create b... (diff) | |
download | ice-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.py | 5 |
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(): |