Received: by mail.netbsd.org (Postfix, from userid 605) id A68C084D41; Mon, 16 Dec 2019 13:31:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2D13784CD5 for ; Mon, 16 Dec 2019 13:31:53 +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 0yZuFz5D6ED5 for ; Mon, 16 Dec 2019 13:31:52 +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 7DB3684C2B for ; Mon, 16 Dec 2019 13:31:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 71457FA97; Mon, 16 Dec 2019 13:31:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1576503112222350" MIME-Version: 1.0 Date: Mon, 16 Dec 2019 13:31:52 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/waf To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20191216133152.71457FA97@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. --_----------=_1576503112222350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Dec 16 13:31:52 UTC 2019 Modified Files: pkgsrc/devel/waf: waf.mk Log Message: waf: When replacing the executable we generally actually want it installed To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/waf/waf.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1576503112222350 Content-Disposition: inline Content-Length: 697 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/waf/waf.mk diff -u pkgsrc/devel/waf/waf.mk:1.7 pkgsrc/devel/waf/waf.mk:1.8 --- pkgsrc/devel/waf/waf.mk:1.7 Mon Mar 25 14:09:55 2019 +++ pkgsrc/devel/waf/waf.mk Mon Dec 16 13:31:52 2019 @@ -1,4 +1,4 @@ -# $NetBSD: waf.mk,v 1.7 2019/03/25 14:09:55 tnn Exp $ +# $NetBSD: waf.mk,v 1.8 2019/12/16 13:31:52 nia Exp $ # XXX why does this does not respect the standard pkgsrc variables like # CONFIGURE_ENV et al? @@ -28,6 +28,8 @@ WAF_ARGS+= --mandir=${PREFIX}/${PKGMAND WAF_REPLACE_EXECUTABLE?= yes .if !empty(WAF_REPLACE_EXECUTABLE:M[yY][eE][sS]) +TOOL_DEPENDS+= waf-[0-9]*:../../devel/waf + post-extract: cp ${PREFIX}/bin/waf ${WRKSRC} .endif --_----------=_1576503112222350--