From 77223c1981ac77cca2c0454b41217622c34b59dd Mon Sep 17 00:00:00 2001 From: "julien.pierre.bugs%sun.com" Date: Tue, 15 Nov 2005 19:01:18 +0000 Subject: [PATCH] fix for bug 316446 . -z defs option was included twice in linker line . r=nelson --- security/nss/lib/freebl/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/security/nss/lib/freebl/Makefile b/security/nss/lib/freebl/Makefile index 491696ac102c..544b9216ff4d 100644 --- a/security/nss/lib/freebl/Makefile +++ b/security/nss/lib/freebl/Makefile @@ -195,12 +195,12 @@ ifeq ($(OS_TARGET),SunOS) MKSHLIB += -R '$$ORIGIN' ifdef NS_USE_GCC ifdef GCC_USE_GNU_LD - MKSHLIB += -Wl,-Bsymbolic,-z,defs,-z,now,-z,text + MKSHLIB += -Wl,-Bsymbolic,-z,now,-z,text else - MKSHLIB += -Wl,-B,symbolic,-z,defs,-z,now,-z,text + MKSHLIB += -Wl,-B,symbolic,-z,now,-z,text endif # GCC_USE_GNU_LD else - MKSHLIB += -B symbolic -z defs -z now -z text + MKSHLIB += -B symbolic -z now -z text endif # NS_USE_GCC # Sun's WorkShop defines v8, v8plus and v9 architectures.