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 657641382C5 for ; Mon, 25 May 2020 15:54:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96EEDE083E; Mon, 25 May 2020 15:54:15 +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 7DDEAE083E for ; Mon, 25 May 2020 15:54:15 +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 2DEA634EFBB for ; Mon, 25 May 2020 15:54:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF4BC217 for ; Mon, 25 May 2020 15:54:12 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1590422033.4ae937692df078e28c21c556ffc68cf684e58894.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sed/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/sed/sed-4.8.ebuild X-VCS-Directories: sys-apps/sed/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 4ae937692df078e28c21c556ffc68cf684e58894 X-VCS-Branch: master Date: Mon, 25 May 2020 15:54:12 +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: b7106d30-33e5-4246-a54d-8bff5e8b9813 X-Archives-Hash: 0fb58d31fb1a3eddc390b66a731fb56c commit: 4ae937692df078e28c21c556ffc68cf684e58894 Author: Mike Gilbert gentoo org> AuthorDate: Mon May 25 15:53:53 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon May 25 15:53:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ae93769 sys-apps/sed: pass --without-selinux to configure Signed-off-by: Mike Gilbert gentoo.org> sys-apps/sed/sed-4.8.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys-apps/sed/sed-4.8.ebuild b/sys-apps/sed/sed-4.8.ebuild index 66b31632c46..bada9c0a526 100644 --- a/sys-apps/sed/sed-4.8.ebuild +++ b/sys-apps/sed/sed-4.8.ebuild @@ -38,12 +38,11 @@ src_configure() { myconf+=( --program-prefix=g ) fi - export ac_cv_search_setfilecon=$(usex selinux -lselinux) - export ac_cv_header_selinux_{context,selinux}_h=$(usex selinux) use static && append-ldflags -static myconf+=( $(use_enable acl) $(use_enable nls) + $(use_with selinux) ) econf "${myconf[@]}" }