Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 630A11A923C for ; Mon, 14 Dec 2020 00:40:12 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CAC1084DCD; Mon, 14 Dec 2020 00:40:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 10D0484D6F for ; Mon, 14 Dec 2020 00:40:11 +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 1ANk8e2Eyi0U for ; Mon, 14 Dec 2020 00:40:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9221484D65 for ; Mon, 14 Dec 2020 00:40:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8F858FA9D; Mon, 14 Dec 2020 00:40:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1607906410108770" MIME-Version: 1.0 Date: Mon, 14 Dec 2020 00:40:10 +0000 From: "Darrin B. Jewell" Subject: CVS commit: pkgsrc/cross To: pkgsrc-changes@NetBSD.org Reply-To: dbj@netbsd.org X-Mailer: log_accum Message-Id: <20201214004010.8F858FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1607906410108770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dbj Date: Mon Dec 14 00:40:10 UTC 2020 Modified Files: pkgsrc/cross/mingw-runtime-bin: Makefile pkgsrc/cross/mingw-w32api-bin: Makefile Log Message: cross/mingw-*-bin: fix INSTALLATION_DIRS To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/cross/mingw-runtime-bin/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/cross/mingw-w32api-bin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1607906410108770 Content-Disposition: inline Content-Length: 1403 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/mingw-runtime-bin/Makefile diff -u pkgsrc/cross/mingw-runtime-bin/Makefile:1.7 pkgsrc/cross/mingw-runtime-bin/Makefile:1.8 --- pkgsrc/cross/mingw-runtime-bin/Makefile:1.7 Fri Mar 20 11:57:25 2020 +++ pkgsrc/cross/mingw-runtime-bin/Makefile Mon Dec 14 00:40:10 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2020/03/20 11:57:25 nia Exp $ +# $NetBSD: Makefile,v 1.8 2020/12/14 00:40:10 dbj Exp $ DISTNAME= mingw-runtime-3.14 PKGNAME= mingw-runtime-bin-3.14 @@ -15,7 +15,7 @@ NO_CONFIGURE= yes USE_TOOLS+= pax WRKSRC= ${WRKDIR} -INSTALLATION_DIRS+= ${MINGW_TARGET} +INSTALLATION_DIRS+= cross/${MINGW_TARGET} do-install: cd ${WRKSRC} && pax -rw -pp bin include lib \ Index: pkgsrc/cross/mingw-w32api-bin/Makefile diff -u pkgsrc/cross/mingw-w32api-bin/Makefile:1.7 pkgsrc/cross/mingw-w32api-bin/Makefile:1.8 --- pkgsrc/cross/mingw-w32api-bin/Makefile:1.7 Fri Mar 20 11:57:25 2020 +++ pkgsrc/cross/mingw-w32api-bin/Makefile Mon Dec 14 00:40:10 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2020/03/20 11:57:25 nia Exp $ +# $NetBSD: Makefile,v 1.8 2020/12/14 00:40:10 dbj Exp $ DISTNAME= w32api-3.11 PKGNAME= mingw-w32api-bin-3.11 @@ -15,7 +15,7 @@ NO_CONFIGURE= yes USE_TOOLS+= pax WRKSRC= ${WRKDIR} -INSTALLATION_DIRS+= ${MINGW_TARGET} +INSTALLATION_DIRS+= cross/${MINGW_TARGET} do-install: cd ${WRKSRC} && pax -rw -pp include lib \ --_----------=_1607906410108770--