Received: by mail.netbsd.org (Postfix, from userid 605) id 2AD3A84D8E; Thu, 13 Jun 2019 09:42:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 96EF884DCA for ; Thu, 13 Jun 2019 09:42:41 +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 RF145uRtlOmG for ; Thu, 13 Jun 2019 09:42:41 +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 EDAD784D8E for ; Thu, 13 Jun 2019 09:42:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E6DA4FBF4; Thu, 13 Jun 2019 09:42:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1560418960270970" MIME-Version: 1.0 Date: Thu, 13 Jun 2019 09:42:40 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-meson To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20190613094240.E6DA4FBF4@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. --_----------=_1560418960270970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jun 13 09:42:40 UTC 2019 Modified Files: pkgsrc/devel/py-meson: build.mk Log Message: py-meson/build.mk: match standard install target more closely Also pass MAKE_ENV to install step. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-meson/build.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1560418960270970 Content-Disposition: inline Content-Length: 784 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-meson/build.mk diff -u pkgsrc/devel/py-meson/build.mk:1.8 pkgsrc/devel/py-meson/build.mk:1.9 --- pkgsrc/devel/py-meson/build.mk:1.8 Fri Apr 26 13:13:52 2019 +++ pkgsrc/devel/py-meson/build.mk Thu Jun 13 09:42:40 2019 @@ -1,4 +1,4 @@ -# $NetBSD: build.mk,v 1.8 2019/04/26 13:13:52 maya Exp $ +# $NetBSD: build.mk,v 1.9 2019/06/13 09:42:40 wiz Exp $ BUILD_DEPENDS+= ${PYPKGPREFIX}-meson-[0-9]*:../../devel/py-meson @@ -17,7 +17,7 @@ meson-install: if [ -f ${WRKSRC}/meson_post_install.py ]; then \ ${CHMOD} +x ${WRKSRC}/meson_post_install.py; \ fi - cd ${WRKSRC} && ${SETENV} ${INSTALL_ENV} ninja -C output install + cd ${WRKSRC} && ${SETENV} ${INSTALL_ENV} ${MAKE_ENV} ninja -C output install PYTHON_VERSIONS_INCOMPATIBLE= 27 --_----------=_1560418960270970--