From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE02C139694 for ; Tue, 23 May 2017 14:30:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15159E0CAB; Tue, 23 May 2017 14:30:10 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED26AE0CAB for ; Tue, 23 May 2017 14:30:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AFC5534173F for ; Tue, 23 May 2017 14:30:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7E4D7454 for ; Tue, 23 May 2017 14:30:00 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1495549786.30409522f810c01005ea348d732cc090d11da42a.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/zlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/zlib/zlib-1.2.11.ebuild X-VCS-Directories: sys-libs/zlib/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 30409522f810c01005ea348d732cc090d11da42a X-VCS-Branch: master Date: Tue, 23 May 2017 14:30:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d31456f1-3bc0-4a7c-a266-65eeb7d3dec3 X-Archives-Hash: ec81bc9527e89aed20ca3e59595fdb27 commit: 30409522f810c01005ea348d732cc090d11da42a Author: Marty Plummer gmail com> AuthorDate: Thu May 18 00:34:33 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue May 23 14:29:46 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30409522 sys-libs/zlib: fix mingw-w64 build. Gentoo-Bug: https://bugs.gentoo.org/605484 Package-Manager: Portage-2.3.5, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/4662 sys-libs/zlib/zlib-1.2.11.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys-libs/zlib/zlib-1.2.11.ebuild b/sys-libs/zlib/zlib-1.2.11.ebuild index f7df57e95c5..b587d42dae1 100644 --- a/sys-libs/zlib/zlib-1.2.11.ebuild +++ b/sys-libs/zlib/zlib-1.2.11.ebuild @@ -29,6 +29,13 @@ src_prepare() { cd contrib/minizip || die eautoreconf fi + + case ${CHOST} in + *-mingw*|mingw*) + # uses preconfigured Makefile rather than configure script + multilib_copy_sources + ;; + esac } echoit() { echo "$@"; "$@"; }