diff options
author | agc <agc@pkgsrc.org> | 2011-03-31 18:30:32 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2011-03-31 18:30:32 +0000 |
commit | 6f280e7bc8b354aca5ef3e1459caf3bb0158e28c (patch) | |
tree | 20f3fee9c8fe3e16c326dea20d77dc875b286e27 /security | |
parent | de0ed6c63334094f8d1856703a6fc21d0abef1e7 (diff) | |
download | pkgsrc-6f280e7bc8b354aca5ef3e1459caf3bb0158e28c.tar.gz |
The '#' character is kinda special to makefiles - re-work the comment field
so that we don't have any '#' chars in it.
Avoids the following:
% grep COMMENT Makefile
COMMENT= Cryptographic store accessible through a PKCS#11 interface
% pkg_info softhsm
Information for softhsm-1.2.0:
Comment:
Cryptographic store accessible through a PKCS
Diffstat (limited to 'security')
-rw-r--r-- | security/softhsm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/softhsm/Makefile b/security/softhsm/Makefile index be5e4a3ed66..364cf1f777e 100644 --- a/security/softhsm/Makefile +++ b/security/softhsm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2010/10/18 21:03:50 pettai Exp $ +# $NetBSD: Makefile,v 1.6 2011/03/31 18:30:32 agc Exp $ # DISTNAME= softhsm-1.2.0 @@ -7,7 +7,7 @@ MASTER_SITES= http://www.opendnssec.org/files/source/ MAINTAINER= pettai@NetBSD.org HOMEPAGE= http://www.opendnssec.org/softhsm/ -COMMENT= Cryptographic store accessible through a PKCS#11 interface +COMMENT= Cryptographic store accessible through a PKCS11 interface LICENSE= 2-clause-bsd PKG_DESTDIR_SUPPORT= user-destdir |