Received: by mail.netbsd.org (Postfix, from userid 605) id EF8B784D66; Sat, 19 Sep 2020 15:51:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 77BE284D45 for ; Sat, 19 Sep 2020 15:51:24 +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 rlwGb-KVrvRZ for ; Sat, 19 Sep 2020 15:51:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CD41784CF7 for ; Sat, 19 Sep 2020 15:51:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C62CAFB28; Sat, 19 Sep 2020 15:51:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160053068319090" MIME-Version: 1.0 Date: Sat, 19 Sep 2020 15:51:23 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/unison2.51 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200919155123.C62CAFB28@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. --_----------=_160053068319090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Sep 19 15:51:23 UTC 2020 Modified Files: pkgsrc/net/unison2.51: Makefile Log Message: unison2.51: fix OCAML_USE_OPT_COMPILER check The value is yes or no, not true. Bump PKGREVISION since binary packages might change. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/net/unison2.51/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160053068319090 Content-Disposition: inline Content-Length: 1038 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/unison2.51/Makefile diff -u pkgsrc/net/unison2.51/Makefile:1.27 pkgsrc/net/unison2.51/Makefile:1.28 --- pkgsrc/net/unison2.51/Makefile:1.27 Mon Aug 17 20:19:51 2020 +++ pkgsrc/net/unison2.51/Makefile Sat Sep 19 15:51:23 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2020/08/17 20:19:51 leot Exp $ +# $NetBSD: Makefile,v 1.28 2020/09/19 15:51:23 wiz Exp $ # Currently, 2.51.x is the standard approach, and thus this package # produces a "unison-2.51.x" package which installs a "unison" binary. @@ -6,7 +6,7 @@ # multiple unison packages, with whichever is the standard approach # using the unversioned name. DISTNAME= unison-2.51.2 -PKGREVISION= 21 +PKGREVISION= 22 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=bcpierce00/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -31,7 +31,7 @@ MAKE_ENV+= HOME=${WRKDIR:Q} .include "../../mk/ocaml.mk" -.if (${OCAML_USE_OPT_COMPILER} == "true") +.if (${OCAML_USE_OPT_COMPILER} == "yes") MAKE_FLAGS+= NATIVE=true .else MAKE_FLAGS+= NATIVE=false --_----------=_160053068319090--