Received: by mail.netbsd.org (Postfix, from userid 605) id 5040C84DE8; Wed, 29 May 2019 03:15:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CBBB384D8A for ; Wed, 29 May 2019 03:15:06 +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 WgQt48hrYrdJ for ; Wed, 29 May 2019 03:15:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2ECC684D2C for ; Wed, 29 May 2019 03:15:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 28CBDFBF4; Wed, 29 May 2019 03:15:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1559099706122150" MIME-Version: 1.0 Date: Wed, 29 May 2019 03:15:06 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/time/ocaml-time_now To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20190529031506.28CBDFBF4@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. --_----------=_1559099706122150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Wed May 29 03:15:06 UTC 2019 Modified Files: pkgsrc/time/ocaml-time_now: Makefile Log Message: (time/ocaml-time_now) Add BUILD_DEPENDS+= bash to fix following problem ===> Building for ocaml-time_now-0.12.0 I need bash to interpret (bash ...) actions but I couldn't find it :( *** Error code 1 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/time/ocaml-time_now/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1559099706122150 Content-Disposition: inline Content-Length: 749 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/time/ocaml-time_now/Makefile diff -u pkgsrc/time/ocaml-time_now/Makefile:1.1 pkgsrc/time/ocaml-time_now/Makefile:1.2 --- pkgsrc/time/ocaml-time_now/Makefile:1.1 Wed Mar 13 11:50:24 2019 +++ pkgsrc/time/ocaml-time_now/Makefile Wed May 29 03:15:05 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2019/03/13 11:50:24 jaapb Exp $ +# $NetBSD: Makefile,v 1.2 2019/05/29 03:15:05 mef Exp $ GITHUB_PROJECT= time_now GITHUB_TAG= v${PKGVERSION_NOREV} @@ -12,6 +12,8 @@ HOMEPAGE= https://github.com/janestreet/ COMMENT= Library that reports the current time LICENSE= mit +BUILD_DEPENDS+= bash-[0-9]*:../../shells/bash + OCAML_USE_DUNE= yes .include "../../mk/ocaml.mk" .include "../../devel/ocaml-base/buildlink3.mk" --_----------=_1559099706122150--