Received: by mail.netbsd.org (Postfix, from userid 605) id B2E4084DA3; Thu, 24 Jan 2019 14:09:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0961F84D48 for ; Thu, 24 Jan 2019 14:09:26 +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 0ancwma824aU for ; Thu, 24 Jan 2019 14:09:24 +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 9AAED84CD0 for ; Thu, 24 Jan 2019 14:09:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 97213FB16; Thu, 24 Jan 2019 14:09:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1548338964193740" MIME-Version: 1.0 Date: Thu, 24 Jan 2019 14:09:24 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/devel/py-meson To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20190124140924.97213FB16@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. --_----------=_1548338964193740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Thu Jan 24 14:09:24 UTC 2019 Modified Files: pkgsrc/devel/py-meson: build.mk Log Message: py-meson: wire down libdir to ${PREFIX}/lib To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 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. --_----------=_1548338964193740 Content-Disposition: inline Content-Length: 878 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.5 pkgsrc/devel/py-meson/build.mk:1.6 --- pkgsrc/devel/py-meson/build.mk:1.5 Tue May 15 08:58:39 2018 +++ pkgsrc/devel/py-meson/build.mk Thu Jan 24 14:09:24 2019 @@ -1,4 +1,4 @@ -# $NetBSD: build.mk,v 1.5 2018/05/15 08:58:39 jperkin Exp $ +# $NetBSD: build.mk,v 1.6 2019/01/24 14:09:24 tnn Exp $ BUILD_DEPENDS+= ${PYPKGPREFIX}-meson-[0-9]*:../../devel/py-meson @@ -6,7 +6,7 @@ BUILD_DEPENDS+= ${PYPKGPREFIX}-meson-[0- do-configure: meson-configure meson-configure: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} meson --prefix ${PREFIX} --mandir ${PKGMANDIR} --buildtype=plain ${MESON_ARGS} . output + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} meson --prefix ${PREFIX} --libdir lib --mandir ${PKGMANDIR} --buildtype=plain ${MESON_ARGS} . output do-build: meson-build meson-build: --_----------=_1548338964193740--