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 D565A1382C5 for ; Sat, 26 Dec 2020 20:26:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13430E0ACB; Sat, 26 Dec 2020 20:26:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EAAD9E0ACB for ; Sat, 26 Dec 2020 20:26:58 +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 93B8734134F for ; Sat, 26 Dec 2020 20:26:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFF474C for ; Sat, 26 Dec 2020 20:26:55 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1609014413.6b92c19d502ad82d828a54c95ebc5bdcf55325a4.sam@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-r3.ebuild X-VCS-Directories: sys-libs/zlib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6b92c19d502ad82d828a54c95ebc5bdcf55325a4 X-VCS-Branch: master Date: Sat, 26 Dec 2020 20:26:55 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88d908f4-f55e-4d10-acf6-ef3790132a43 X-Archives-Hash: 34a683a64fda78ac88616fd20c4a19ba commit: 6b92c19d502ad82d828a54c95ebc5bdcf55325a4 Author: Sam James gentoo org> AuthorDate: Sat Dec 26 20:26:47 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 26 20:26:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b92c19d sys-libs/zlib: add missing || die on Cygwin sed Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> sys-libs/zlib/zlib-1.2.11-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/zlib/zlib-1.2.11-r3.ebuild b/sys-libs/zlib/zlib-1.2.11-r3.ebuild index 691432e4706..ef5a1d5a37d 100644 --- a/sys-libs/zlib/zlib-1.2.11-r3.ebuild +++ b/sys-libs/zlib/zlib-1.2.11-r3.ebuild @@ -51,7 +51,7 @@ src_prepare() { case ${CHOST} in *-cygwin*) # do not use _wopen, is a mingw symbol only - sed -i -e '/define WIDECHAR/d' "${S}"/gzguts.h + sed -i -e '/define WIDECHAR/d' "${S}"/gzguts.h || die # zlib1.dll is the mingw name, need cygz.dll # cygz.dll is loaded by toolchain, put into subdir sed -i -e 's|zlib1.dll|win32/cygz.dll|' win32/Makefile.gcc || die