diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-03-01 23:03:38 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-03-01 23:03:38 +0000 |
commit | bffc76aaeb85326f68c4928f3d6473a16b5acd8f (patch) | |
tree | ddff77048d88aa99e730902b91712e7d3a1e7ad8 | |
parent | Fixed bug #1930 (diff) | |
download | ice-bffc76aaeb85326f68c4928f3d6473a16b5acd8f.tar.bz2 ice-bffc76aaeb85326f68c4928f3d6473a16b5acd8f.tar.xz ice-bffc76aaeb85326f68c4928f3d6473a16b5acd8f.zip |
Fixed bug #1936
-rw-r--r-- | cpp/config/Make.rules.SunOS | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/config/Make.rules.SunOS b/cpp/config/Make.rules.SunOS index bd5eb4576ae..dd7e94199a9 100644 --- a/cpp/config/Make.rules.SunOS +++ b/cpp/config/Make.rules.SunOS @@ -101,9 +101,9 @@ ifeq ($(CXX),CC) mklib = $(CXX) -xar -o $(1) $(2) ifneq ($(embedded_runpath_prefix),) - LDPLATFORMFLAGS = -R $(runpath_libdir) -z text + LDPLATFORMFLAGS = -R $(runpath_libdir):/usr/sfw/$(libsubdir) -z text else - LDPLATFORMFLAGS = -z text + LDPLATFORMFLAGS = -R /usr/sfw/$(libsubdir) -z text endif endif |