diff options
author | leot <leot@pkgsrc.org> | 2018-12-12 22:29:36 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2018-12-12 22:29:36 +0000 |
commit | b789feedeb1bf65a783b11ab680236850de05cba (patch) | |
tree | 9879fbabe0e9b2b9bf21077890a7349705b5cbac | |
parent | 7a4ddb91cfd389aab9c41c7d674f3ac435bb1579 (diff) | |
download | pkgsrc-b789feedeb1bf65a783b11ab680236850de05cba.tar.gz |
p11-kit: Use `+=' to append to DEPENDS (not `=') (NFC)
-rw-r--r-- | security/p11-kit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/p11-kit/Makefile b/security/p11-kit/Makefile index 751370cffbb..46ec62ac238 100644 --- a/security/p11-kit/Makefile +++ b/security/p11-kit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2018/09/05 08:34:10 prlw1 Exp $ +# $NetBSD: Makefile,v 1.13 2018/12/12 22:29:36 leot Exp $ DISTNAME= p11-kit-0.23.14 CATEGORIES= security @@ -11,7 +11,7 @@ HOMEPAGE= https://p11-glue.freedesktop.org/p11-kit.html COMMENT= PKCS\#11 module manager LICENSE= modified-bsd -DEPENDS= mozilla-rootcerts>=1.0.20150804nb1:../../security/mozilla-rootcerts +DEPENDS+= mozilla-rootcerts>=1.0.20150804nb1:../../security/mozilla-rootcerts CONFIGURE_ARGS+= --with-trust-paths=${PREFIX}/share/mozilla-rootcerts/cacert.pem |