Received: by mail.netbsd.org (Postfix, from userid 605) id 539F184DF4; Tue, 2 Jun 2020 16:22:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D1DB184DF2 for ; Tue, 2 Jun 2020 16:22:40 +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 C3lDy69Llw16 for ; Tue, 2 Jun 2020 16:22:40 +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 6A15284CDB for ; Tue, 2 Jun 2020 16:22:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5D973FB27; Tue, 2 Jun 2020 16:22:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1591114960295720" MIME-Version: 1.0 Date: Tue, 2 Jun 2020 16:22:40 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mk/platform To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20200602162240.5D973FB27@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. --_----------=_1591114960295720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Jun 2 16:22:40 UTC 2020 Modified Files: pkgsrc/mk/platform: SunOS.mk Log Message: mk: bmake cannot compare non-integers numerically. Just use an empty() match instead. To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 pkgsrc/mk/platform/SunOS.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1591114960295720 Content-Disposition: inline Content-Length: 635 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/platform/SunOS.mk diff -u pkgsrc/mk/platform/SunOS.mk:1.79 pkgsrc/mk/platform/SunOS.mk:1.80 --- pkgsrc/mk/platform/SunOS.mk:1.79 Mon Nov 12 14:22:58 2018 +++ pkgsrc/mk/platform/SunOS.mk Tue Jun 2 16:22:40 2020 @@ -1,4 +1,4 @@ -# $NetBSD: SunOS.mk,v 1.79 2018/11/12 14:22:58 jperkin Exp $ +# $NetBSD: SunOS.mk,v 1.80 2020/06/02 16:22:40 jperkin Exp $ # # Variable definitions for the SunOS/Solaris operating system. @@ -40,7 +40,7 @@ MOTIF_TYPE_DEFAULT?= motif .endif # Use SMF by default if available. -.if ${OS_VERSION} >= 5.10 +.if empty(OS_VERSION:M5.[0-9]) INIT_SYSTEM?= smf .endif --_----------=_1591114960295720--