Received: by mail.netbsd.org (Postfix, from userid 605) id 7E38F84EFF; Tue, 9 May 2023 12:51:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 987C884E8F for ; Tue, 9 May 2023 12:51:08 +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 8rxrdowUQqXd for ; Tue, 9 May 2023 12:51:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E9BE484EE0 for ; Tue, 9 May 2023 12:51:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 211C4FA89; Tue, 9 May 2023 12:49:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168363654624880" MIME-Version: 1.0 Date: Tue, 9 May 2023 12:49:06 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/mk/tools To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230509124906.211C4FA89@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168363654624880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue May 9 12:49:06 UTC 2023 Modified Files: pkgsrc/mk/tools: tools.Darwin.mk Log Message: mk: support mandoc on Darwin To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 pkgsrc/mk/tools/tools.Darwin.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168363654624880 Content-Disposition: inline Content-Length: 831 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/tools/tools.Darwin.mk diff -u pkgsrc/mk/tools/tools.Darwin.mk:1.61 pkgsrc/mk/tools/tools.Darwin.mk:1.62 --- pkgsrc/mk/tools/tools.Darwin.mk:1.61 Tue Jan 19 11:42:18 2021 +++ pkgsrc/mk/tools/tools.Darwin.mk Tue May 9 12:49:05 2023 @@ -1,4 +1,4 @@ -# $NetBSD: tools.Darwin.mk,v 1.61 2021/01/19 11:42:18 jperkin Exp $ +# $NetBSD: tools.Darwin.mk,v 1.62 2023/05/09 12:49:05 adam Exp $ # # System-supplied tools for the Darwin (Mac OS X) operating system. @@ -91,6 +91,9 @@ TOOLS_PLATFORM.mail?= /usr/bin/mail .if exists(/usr/bin/makeinfo) TOOLS_PLATFORM.makeinfo?= /usr/bin/makeinfo .endif +.if exists(/usr/bin/mandoc) +TOOLS_PLATFORM.mandoc?= /usr/bin/mandoc +.endif TOOLS_PLATFORM.mkdir?= /bin/mkdir -p TOOLS_PLATFORM.mktemp?= /usr/bin/mktemp TOOLS_PLATFORM.mtree?= /usr/sbin/mtree --_----------=_168363654624880--