summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2008-03-17 16:00:45 +0000
committerBrooks Davis <brooks@FreeBSD.org>2008-03-17 16:00:45 +0000
commit22131d5509ee4a198c80f76a5463455ceb73de39 (patch)
tree2d29b528d363fa8dbf8ab657f39dc37a7261fa9a /security
parentUSE_XLIB -> USE_XORG (diff)
o Fix port OPTION ETCSYMLINK which was not creating the proper link.
Instead of pointing to the crt file, it was pointing to the directory. o Bump PORTREVISION PR: ports/121782 Submitted by: lioux Point hat to: brooks
Notes
Notes: svn path=/head/; revision=209217
Diffstat (limited to 'security')
-rw-r--r--security/ca_root_nss/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/ca_root_nss/Makefile b/security/ca_root_nss/Makefile
index 1e32c9305948..bfcefa8a9bcf 100644
--- a/security/ca_root_nss/Makefile
+++ b/security/ca_root_nss/Makefile
@@ -7,7 +7,7 @@
PORTNAME= ca_root_nss
PORTVERSION= ${VERSION_NSS}
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
${MASTER_SITES_MODSSL:S/$/:mod_ssl/}
@@ -66,7 +66,7 @@ do-install:
${MKDIR} ${PREFIX}/${CERTDIR}
${INSTALL_DATA} ${WRKDIR}/ca-root-nss.crt ${PREFIX}/${CERTDIR}
.if !defined(WITHOUT_ETCSYMLINK)
- ${LN} -s ${PREFIX}/${CERTDIR} /etc/ssl/cert.pem
+ ${LN} -s ${PREFIX}/${CERTDIR}/ca-root-nss.crt /etc/ssl/cert.pem
.endif
.include <bsd.port.post.mk>