Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id DEBAD1A921F for ; Tue, 12 Apr 2022 01:02:49 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 072A384E6C; Tue, 12 Apr 2022 01:02:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4017A84D2C for ; Tue, 12 Apr 2022 01:02:48 +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 RqS42kZNZL2A for ; Tue, 12 Apr 2022 01:02:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8CD8C84D15 for ; Tue, 12 Apr 2022 01:02:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 86035FB24; Tue, 12 Apr 2022 01:02:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1649725367198190" MIME-Version: 1.0 Date: Tue, 12 Apr 2022 01:02:47 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/net/freeradius To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20220412010247.86035FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1649725367198190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Tue Apr 12 01:02:47 UTC 2022 Modified Files: pkgsrc/net/freeradius: config.mk Log Message: freeradius: tweak list generation code examples (NFC) It's better to generate these lists from the resulting package to be installed via DESTDIR, rather than the ingoing source, as not everything found in the latter is installed. (The sed command also doesn't work with BSD sed as intended, but that's left as-is.) To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/freeradius/config.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1649725367198190 Content-Disposition: inline Content-Length: 986 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/freeradius/config.mk diff -u pkgsrc/net/freeradius/config.mk:1.3 pkgsrc/net/freeradius/config.mk:1.4 --- pkgsrc/net/freeradius/config.mk:1.3 Mon Apr 11 02:05:27 2022 +++ pkgsrc/net/freeradius/config.mk Tue Apr 12 01:02:47 2022 @@ -1,6 +1,6 @@ -# $NetBSD: config.mk,v 1.3 2022/04/11 02:05:27 gutteridge Exp $ +# $NetBSD: config.mk,v 1.4 2022/04/12 01:02:47 gutteridge Exp $ -# cd ${WRKSRC}/raddb; find . -type f -or -type l | sort | sed 's,^./,EGFILES+=\t,' +# cd ${DESTDIR}${EGDIR}/raddb; find . -type f -or -type l | sort | sed 's,^./,EGFILES+=\t,' EGFILES+= README.rst EGFILES+= certs/Makefile EGFILES+= certs/README.md @@ -274,7 +274,7 @@ EGFILES+= sites-enabled/inner-tunnel EGFILES+= templates.conf EGFILES+= trigger.conf -# cd ${WRKSRC}/raddb; find . -type d | sort | sed 's,^./,EGDIRS+=\t,' +# cd ${DESTDIR}${EGDIR}/raddb; find . -type d | sort | sed 's,^./,EGDIRS+=\t,' EGDIRS+= certs EGDIRS+= mods-available EGDIRS+= mods-config --_----------=_1649725367198190--