diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-05-05 15:50:21 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-05-05 15:50:21 -0230 |
commit | 9f82f9524eb7f9d296d0b78b48425617efdfe878 (patch) | |
tree | 1c1426f4eea9bb937d80449718feafd2f45ca423 /demoscript/Util.py | |
parent | Bug 1594 - some more byte sequence optimizations (diff) | |
download | ice-9f82f9524eb7f9d296d0b78b48425617efdfe878.tar.bz2 ice-9f82f9524eb7f9d296d0b78b48425617efdfe878.tar.xz ice-9f82f9524eb7f9d296d0b78b48425617efdfe878.zip |
Bug 3624 - desupport HP
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r-- | demoscript/Util.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index d0352171e7d..31cbf55456f 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -101,9 +101,6 @@ def configurePaths(): if iceHome and x64: if isWin32(): binDir = os.path.join(binDir, "x64") - elif isHpUx(): - libDir = os.path.join(libDir, "pa20_64") - binDir = os.path.join(binDir, "pa20_64") elif isSolaris(): if isSparc(): libDir = os.path.join(libDir, "sparcv9") @@ -199,9 +196,6 @@ def getIceDir(subdir = None): def isWin32(): return sys.platform == "win32" -def isHpUx(): - return sys.platform == "hp-ux11" - def isSolaris(): return sys.platform == "sunos5" @@ -504,11 +498,6 @@ def cleanDbDir(path): def addLdPath(libpath): if isWin32(): addenv("PATH", libpath) - elif isHpUx(): - if x64: - addenv("LD_LIBRARY_PATH", libpath) - else: - addenv("SHLIB_PATH", libpath) elif isDarwin(): addenv("DYLD_LIBRARY_PATH", libpath) elif isAIX(): |