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 130A1138334 for ; Tue, 28 Aug 2018 13:08:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12CC8E0636; Tue, 28 Aug 2018 13:08:37 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6607E0636 for ; Tue, 28 Aug 2018 13:08:36 +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 3DCB4335D0D for ; Tue, 28 Aug 2018 13:08:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3A1138D for ; Tue, 28 Aug 2018 13:08:33 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1535461703.74f62a4b59e09b7c44cb1d76ac0fd106ed28ef13.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/features/prefix/standalone/kernel-2.6.16+/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc X-VCS-Directories: profiles/features/prefix/standalone/kernel-2.6.16+/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 74f62a4b59e09b7c44cb1d76ac0fd106ed28ef13 X-VCS-Branch: master Date: Tue, 28 Aug 2018 13:08:33 +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: 1717ee2c-63e0-4a5d-a835-ef0f623a7288 X-Archives-Hash: 89855ac873afda113e30865c7e4d9071 commit: 74f62a4b59e09b7c44cb1d76ac0fd106ed28ef13 Author: Benda Xu gentoo org> AuthorDate: Tue Aug 28 13:07:01 2018 +0000 Commit: Benda XU gentoo org> CommitDate: Tue Aug 28 13:08:23 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f62a4b p/f/p/s/kernel-2.6.16+/profile.bashrc: no dup3 or pipe2 for ocaml. They are not defined by kernel-2.6.16. profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc b/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc index 2a505554239..eeba17808ec 100644 --- a/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc +++ b/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc @@ -8,9 +8,9 @@ elif [[ ${CATEGORY}/${PN} == dev-qt/qtcore && ${EBUILD_PHASE} == configure ]]; t sed -e '/define.*HAVE_PIPE2/d' -i ${S}/src/3rdparty/forkfd/forkfd.c || die einfo "Removing utimensat calls..." sed -e '/_POSIX_VERSION/s/defined(_POSIX_VERSION)/0/' -i ${S}/qmake/library/ioutils.cpp || die -elif [[ ${CATEGORY}/${PN} == dev-lang/ocaml && ${EBUILD_PHASE} == compile ]]; then - einfo "Removing dup3 definitions..." - sed -e '/define.*HAS_DUP3/d' -i ${S}/config/s.h || die +elif [[ ${CATEGORY}/${PN} == dev-lang/ocaml && ${EBUILD_PHASE} == configure ]]; then + einfo "Removing dup3 and pipe2 definitions..." + sed -e '/hasgot dup3/,/^fi/d;/hasgot pipe2/,/^fi/d' -i ${S}/configure || die fi # Local Variables: