diff options
author | jperkin <jperkin@pkgsrc.org> | 2017-03-15 18:52:55 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2017-03-15 18:52:55 +0000 |
commit | d0dd938cedebe546ada9ddc13528bcf5d2bbf2d6 (patch) | |
tree | ba3506f06864a51cc864f1bf15a82a81bc7bd9ff /security | |
parent | 8fc083c878434c44c9a0535f423a9b00c6a337b2 (diff) | |
download | pkgsrc-d0dd938cedebe546ada9ddc13528bcf5d2bbf2d6.tar.gz |
Limit broken openssl.cnf handling to NetBSD only after no response from
bsiegert@. There's no reason to pollute other operating systems.
Bump PKGREVISION.
Diffstat (limited to 'security')
-rw-r--r-- | security/mozilla-rootcerts/Makefile | 4 | ||||
-rw-r--r-- | security/mozilla-rootcerts/files/mozilla-rootcerts.sh | 9 |
2 files changed, 7 insertions, 6 deletions
diff --git a/security/mozilla-rootcerts/Makefile b/security/mozilla-rootcerts/Makefile index 7fdd5922efe..43545438e3b 100644 --- a/security/mozilla-rootcerts/Makefile +++ b/security/mozilla-rootcerts/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.25 2017/03/03 15:46:27 bsiegert Exp $ +# $NetBSD: Makefile,v 1.26 2017/03/15 18:52:55 jperkin Exp $ DISTNAME= mozilla-rootcerts-1.0.${CERTDATA_DATE} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= security MASTER_SITES= -https://hg.mozilla.org/mozilla-central/raw-file/052b90b5414f/security/nss/lib/ckfw/builtins/certdata.txt DISTFILES= ${CERTDATA} diff --git a/security/mozilla-rootcerts/files/mozilla-rootcerts.sh b/security/mozilla-rootcerts/files/mozilla-rootcerts.sh index 49b99734985..6c210dac9d5 100644 --- a/security/mozilla-rootcerts/files/mozilla-rootcerts.sh +++ b/security/mozilla-rootcerts/files/mozilla-rootcerts.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: mozilla-rootcerts.sh,v 1.12 2017/03/03 15:46:27 bsiegert Exp $ +# $NetBSD: mozilla-rootcerts.sh,v 1.13 2017/03/15 18:52:56 jperkin Exp $ # # This script is meant to be used as follows: # @@ -188,9 +188,10 @@ extract) }' ;; install) - # quell warnings for a missing config file - touch $destdir$conffile - + if [ `uname -s` = "NetBSD" ]; then + # quell warnings for a missing config file + touch $destdir$conffile + fi if [ ! -d $destdir$SSLDIR ]; then ${ECHO} 1>&2 "ERROR: $destdir$SSLDIR does not exist, aborting." exit 1 |