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 15C231A9239 for ; Mon, 29 Nov 2021 16:19:04 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4C95184E7D; Mon, 29 Nov 2021 16:19:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8737784E79 for ; Mon, 29 Nov 2021 16:19: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 zTU-wseU4TKB for ; Mon, 29 Nov 2021 16:19:02 +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 DF50B84D04 for ; Mon, 29 Nov 2021 16:19:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D6AC9FAEC; Mon, 29 Nov 2021 16:19:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16382027413240" MIME-Version: 1.0 Date: Mon, 29 Nov 2021 16:19:01 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mail/imap-uw To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20211129161901.D6AC9FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16382027413240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon Nov 29 16:19:01 UTC 2021 Modified Files: pkgsrc/mail/imap-uw: Makefile Log Message: imap-uw: Use OPSYS_VERSION. OS_VERSION does not support arithmetic expressions. To generate a diff of this commit: cvs rdiff -u -r1.151 -r1.152 pkgsrc/mail/imap-uw/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16382027413240 Content-Disposition: inline Content-Length: 690 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/imap-uw/Makefile diff -u pkgsrc/mail/imap-uw/Makefile:1.151 pkgsrc/mail/imap-uw/Makefile:1.152 --- pkgsrc/mail/imap-uw/Makefile:1.151 Thu Oct 21 07:46:35 2021 +++ pkgsrc/mail/imap-uw/Makefile Mon Nov 29 16:19:01 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.151 2021/10/21 07:46:35 wiz Exp $ +# $NetBSD: Makefile,v 1.152 2021/11/29 16:19:01 jperkin Exp $ # # ATTENTION: # The Kerberos support in this software is known to be problematic. If you @@ -54,7 +54,7 @@ BUILD_TARGET.Darwin= osx . endif .endif .if ${OPSYS} == "IRIX" -. if ${OS_VERSION} >= 6.5 +. if ${OPSYS_VERSION} >= 060500 BUILD_TARGET.IRIX= sg6 . else BUILD_TARGET.IRIX= sgi --_----------=_16382027413240--