diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-01-30 13:42:20 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-01-30 13:42:20 +0000 |
commit | 6af8a2560af03ea897d3f9177426b9dd342747de (patch) | |
tree | e4083068651580af27870f72f123fa7aaeeeb9fb /cpp/config/TestUtil.py | |
parent | BCC compile erroes (diff) | |
download | ice-6af8a2560af03ea897d3f9177426b9dd342747de.tar.bz2 ice-6af8a2560af03ea897d3f9177426b9dd342747de.tar.xz ice-6af8a2560af03ea897d3f9177426b9dd342747de.zip |
Fixes
Diffstat (limited to 'cpp/config/TestUtil.py')
-rw-r--r-- | cpp/config/TestUtil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/config/TestUtil.py b/cpp/config/TestUtil.py index 07314e44cb0..42ecfeafe2c 100644 --- a/cpp/config/TestUtil.py +++ b/cpp/config/TestUtil.py @@ -378,6 +378,7 @@ elif isHpUx(): os.environ["SHLIB_PATH"] = os.path.join(toplevel, "lib") + ":" + os.getenv("SHLIB_PATH", "") elif isDarwin(): os.environ["DYLD_LIBRARY_PATH"] = os.path.join(toplevel, "lib") + ":" + os.getenv("DYLD_LIBRRARY_PATH", "") + os.environ["DYLD_BIND_AT_LAUNCH"] = "1" elif isAIX(): os.environ["LIBPATH"] = os.path.join(toplevel, "lib") + ":" + os.getenv("LIBPATH", "") else: |