diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2010-04-29 01:58:18 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2010-04-29 01:58:18 +0000 |
commit | bc87b82c6202843286b3faea0d69a6fb344576b8 (patch) | |
tree | 4bd68e6b5af49355053b8c4beffb2e700b335773 /security/nss/files | |
parent | - Fix the build with sip-4.10 (diff) |
Fix the 'nss-config --libs' by remove the '-Wl,-R/usr/local/lib/nss' to allow
other gecko applications to be able to build with nss.
PR: ports/144994
Submitted by: mi
Notes
Notes:
svn path=/head/; revision=253404
Diffstat (limited to 'security/nss/files')
-rw-r--r-- | security/nss/files/nss-config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/files/nss-config.in b/security/nss/files/nss-config.in index 18f27d26d02f..c826fc6aea69 100644 --- a/security/nss/files/nss-config.in +++ b/security/nss/files/nss-config.in @@ -127,7 +127,7 @@ if test "$echo_cflags" = "yes"; then fi if test "$echo_libs" = "yes"; then - libdirs="-Wl,-R$libdir -L$libdir" + libdirs="-L$libdir" if test -n "$lib_ssl"; then libdirs="$libdirs -lssl${major_version}" fi |