diff options
author | richard <richard> | 2013-12-13 07:57:25 +0000 |
---|---|---|
committer | richard <richard> | 2013-12-13 07:57:25 +0000 |
commit | 5968c7b48a6fb16449f01a840d4cab0e8a826e2d (patch) | |
tree | b3091683deb15ed78545010de6cd9a800a418067 /mail | |
parent | 0361457c76179cb7629fabb1b51e275606b8945b (diff) | |
download | pkgsrc-5968c7b48a6fb16449f01a840d4cab0e8a826e2d.tar.gz |
SunOS workaround for strip issues with libxul
Diffstat (limited to 'mail')
-rw-r--r-- | mail/thunderbird/hacks.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mail/thunderbird/hacks.mk b/mail/thunderbird/hacks.mk index 0b45a9fae5c..966a78095b4 100644 --- a/mail/thunderbird/hacks.mk +++ b/mail/thunderbird/hacks.mk @@ -1,6 +1,11 @@ -# $NetBSD: hacks.mk,v 1.4 2013/05/23 13:14:28 ryoon Exp $ +# $NetBSD: hacks.mk,v 1.5 2013/12/13 07:57:25 richard Exp $ # workround for link of thunderbird-bin etc. LDFLAGS+= -Wl,-R${PREFIX}/lib/thunderbird +.if ${OPSYS} == "SunOS" +# workaround for strip problems with libxul.so +# https://www.illumos.org/issues/4383 +INSTALL_UNSTRIPPED=yes +.endif .include "../../devel/xulrunner17/hacks.mk" |