Received: by mail.netbsd.org (Postfix, from userid 605) id 60ED384E01; Tue, 2 Jun 2020 22:32:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DD28B84DFA for ; Tue, 2 Jun 2020 22:32:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id SHqDx07CzT9K for ; Tue, 2 Jun 2020 22:32:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 64F8A84D21 for ; Tue, 2 Jun 2020 22:32:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5E1D3FB27; Tue, 2 Jun 2020 22:32:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159113712275910" MIME-Version: 1.0 Date: Tue, 2 Jun 2020 22:32:02 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/security/mozilla-rootcerts To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20200602223202.5E1D3FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_159113712275910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Jun 2 22:32:02 UTC 2020 Modified Files: pkgsrc/security/mozilla-rootcerts: Makefile pkgsrc/security/mozilla-rootcerts/files: mozilla-rootcerts.sh Log Message: mozilla-rootcerts: Ensure script uses correct SH. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/security/mozilla-rootcerts/Makefile cvs rdiff -u -r1.20 -r1.21 \ pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159113712275910 Content-Disposition: inline Content-Length: 1560 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/mozilla-rootcerts/Makefile diff -u pkgsrc/security/mozilla-rootcerts/Makefile:1.37 pkgsrc/security/mozilla-rootcerts/Makefile:1.38 --- pkgsrc/security/mozilla-rootcerts/Makefile:1.37 Sat May 30 22:39:08 2020 +++ pkgsrc/security/mozilla-rootcerts/Makefile Tue Jun 2 22:32:02 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2020/05/30 22:39:08 tnn Exp $ +# $NetBSD: Makefile,v 1.38 2020/06/02 22:32:02 jperkin Exp $ DISTNAME= mozilla-rootcerts-1.0.${CERTDATA_DATE} CATEGORIES= security @@ -39,7 +39,7 @@ SUBST_CLASSES= paths SUBST_MESSAGE.paths= Replacing hard-coded paths. SUBST_STAGE.paths= post-configure SUBST_FILES.paths= ${CERT_SCRIPT} -SUBST_VARS.paths= AWK DATADIR ECHO EXPR LN LS MKDIR PREFIX SSLDIR RM +SUBST_VARS.paths= AWK DATADIR ECHO EXPR LN LS MKDIR PREFIX RM SH SSLDIR SUBST_SED.paths= -e 's,@OPENSSL@,${TOOLS_PATH.openssl},g' INSTALLATION_DIRS= sbin ${DATADIR} Index: pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh diff -u pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh:1.20 pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh:1.21 --- pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh:1.20 Mon Mar 30 16:38:03 2020 +++ pkgsrc/security/mozilla-rootcerts/files/mozilla-rootcerts.sh Tue Jun 2 22:32:02 2020 @@ -1,6 +1,6 @@ -#!/bin/sh +#!@SH@ # -# $NetBSD: mozilla-rootcerts.sh,v 1.20 2020/03/30 16:38:03 gdt Exp $ +# $NetBSD: mozilla-rootcerts.sh,v 1.21 2020/06/02 22:32:02 jperkin Exp $ # # This script is meant to be used as follows: # --_----------=_159113712275910--