diff options
author | Brent Eagles <brent@zeroc.com> | 2005-02-22 17:05:08 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-02-22 17:05:08 +0000 |
commit | 049e2314d4db788412b073011c3173474f7ce39d (patch) | |
tree | 7f4bc2deee3955098e912a76729a5ae56d57c7e6 /cpp/newmakebindist.py | |
parent | libraries required for building most likely have to be added to the shared (diff) | |
download | ice-049e2314d4db788412b073011c3173474f7ce39d.tar.bz2 ice-049e2314d4db788412b073011c3173474f7ce39d.tar.xz ice-049e2314d4db788412b073011c3173474f7ce39d.zip |
adding shared library path for hpux
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index e2f04227042..c7305f48000 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -775,10 +775,12 @@ def main(): # # Configure environment. # - if getPlatform() <> "aix": - dylibEnvironmentVar = 'LD_LIBRARY_PATH' - else: + if getPlatform() == "aix": dylibEnvironmentVar = 'LIBPATH' + elif getPlatform() == "hpux": + dylibEnvironmentVar = 'SHLIB_PATH' + else: + dylibEnvironmentVar = 'LD_LIBRARY_PATH' for k, v in buildEnvironment.iteritems(): os.environ[k] = v |