Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8CE2884D01 for ; Sun, 4 Jun 2023 12:29:54 +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 QxfMRS_x5f40 for ; Sun, 4 Jun 2023 12:29:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D98B384CFD for ; Sun, 4 Jun 2023 12:29:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 092E3FA88; Sun, 4 Jun 2023 12:29:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1685881793289060" MIME-Version: 1.0 Date: Sun, 4 Jun 2023 12:29:53 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20230604122953.092E3FA88@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1685881793289060 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Sun Jun 4 12:29:52 UTC 2023 Modified Files: pkgsrc/mk: bsd.prefs.mk Log Message: Add OS_VARIANT for Tribblix. To generate a diff of this commit: cvs rdiff -u -r1.431 -r1.432 pkgsrc/mk/bsd.prefs.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1685881793289060 Content-Disposition: inline Content-Length: 848 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/bsd.prefs.mk diff -u pkgsrc/mk/bsd.prefs.mk:1.431 pkgsrc/mk/bsd.prefs.mk:1.432 --- pkgsrc/mk/bsd.prefs.mk:1.431 Wed May 17 19:34:26 2023 +++ pkgsrc/mk/bsd.prefs.mk Sun Jun 4 12:29:52 2023 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.prefs.mk,v 1.431 2023/05/17 19:34:26 wiz Exp $ +# $NetBSD: bsd.prefs.mk,v 1.432 2023/06/04 12:29:52 schmonz Exp $ # # This file includes the mk.conf file, which contains the user settings. # @@ -293,6 +293,9 @@ LOWER_VARIANT_VERSION= ${_UNAME_V:C/joye . elif !empty(_UNAME_V:Momnios-*) OS_VARIANT= OmniOS LOWER_VARIANT_VERSION!= /usr/bin/awk '{ print $$3; exit 0; }' /etc/release +. elif !empty(_UNAME_V:Mtribblix-*) +OS_VARIANT= Tribblix +LOWER_VARIANT_VERSION!= /usr/bin/awk '{ print $$2; exit 0; }' /etc/release . else OS_VARIANT= Solaris LOWER_VARIANT_VERSION= ${_UNAME_V} --_----------=_1685881793289060--