Received: by mail.netbsd.org (Postfix, from userid 605) id 6D56D84DAF; Tue, 19 May 2020 00:21:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EB47284DAD for ; Tue, 19 May 2020 00:21:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 8mOVQVQ1WOmC for ; Tue, 19 May 2020 00:21:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4D1B684C85 for ; Tue, 19 May 2020 00:21:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 46F6DFB27; Tue, 19 May 2020 00:21:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589847661283170" MIME-Version: 1.0 Date: Tue, 19 May 2020 00:21:01 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/databases/ldb To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20200519002101.46F6DFB27@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. --_----------=_1589847661283170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Tue May 19 00:21:01 UTC 2020 Modified Files: pkgsrc/databases/ldb: options.mk Log Message: ldb: pkgsrc toolify previous (preferred sed may not be "sed") To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/databases/ldb/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589847661283170 Content-Disposition: inline Content-Length: 855 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/ldb/options.mk diff -u pkgsrc/databases/ldb/options.mk:1.2 pkgsrc/databases/ldb/options.mk:1.3 --- pkgsrc/databases/ldb/options.mk:1.2 Mon May 18 15:39:20 2020 +++ pkgsrc/databases/ldb/options.mk Tue May 19 00:21:01 2020 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2020/05/18 15:39:20 hauke Exp $ +# $NetBSD: options.mk,v 1.3 2020/05/19 00:21:01 gutteridge Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.ldb PKG_SUPPORTED_OPTIONS= ldap @@ -15,7 +15,7 @@ PLIST.ldap= yes # No official way to configure without ldap CFG_CACHE= ${WRKSRC}/bin/c4che/default_cache.py post-configure: - mv ${CFG_CACHE} ${CFG_CACHE}.orig - sed -E -e 's/(ENABLE_LDAP_BACKEND =) True/\1 False/g' \ + ${MV} ${CFG_CACHE} ${CFG_CACHE}.orig + ${SED} -E -e 's/(ENABLE_LDAP_BACKEND =) True/\1 False/g' \ ${CFG_CACHE}.orig > ${CFG_CACHE} .endif --_----------=_1589847661283170--