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 827471396D9 for ; Tue, 24 Oct 2017 12:43:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D2AC2BC07F; Tue, 24 Oct 2017 12:43:49 +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 656492BC07F for ; Tue, 24 Oct 2017 12:43:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8392C33C770 for ; Tue, 24 Oct 2017 12:43:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BCDE824 for ; Tue, 24 Oct 2017 12:43:47 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1508848977.5f9d88906c6b49f89b423f720b0296cc01b98bb1.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/gawk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/gawk/gawk-4.2.0.ebuild X-VCS-Directories: sys-apps/gawk/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 5f9d88906c6b49f89b423f720b0296cc01b98bb1 X-VCS-Branch: master Date: Tue, 24 Oct 2017 12:43:47 +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: 927b1a96-89f6-4830-97b5-eacdd3e32adb X-Archives-Hash: 72097c87537e36637ed89e7879d587cb commit: 5f9d88906c6b49f89b423f720b0296cc01b98bb1 Author: Fabian Groffen gentoo org> AuthorDate: Tue Oct 24 12:21:48 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Oct 24 12:42:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f9d8890 sys-apps/gawk: fix Solaris standards conflict resolution Package-Manager: Portage-2.3.8, Repoman-2.3.3 sys-apps/gawk/gawk-4.2.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-apps/gawk/gawk-4.2.0.ebuild b/sys-apps/gawk/gawk-4.2.0.ebuild index da57da47573..231bcb851dc 100644 --- a/sys-apps/gawk/gawk-4.2.0.ebuild +++ b/sys-apps/gawk/gawk-4.2.0.ebuild @@ -38,7 +38,8 @@ src_prepare() { # fix standards conflict on Solaris if [[ ${CHOST} == *-solaris* ]] ; then sed -i \ - -e '/\<_XOPEN_SOURCE\>/s/$/600/' \ + -e '/\<_XOPEN_SOURCE\>/s/1$/600/' \ + -e '/\<_XOPEN_SOURCE_EXTENDED\>/s/1//' \ extension/inplace.c || die fi }