Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sed/
Date: Mon, 25 May 2020 15:54:17
Message-Id: 1590422033.4ae937692df078e28c21c556ffc68cf684e58894.floppym@gentoo
1 commit: 4ae937692df078e28c21c556ffc68cf684e58894
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 25 15:53:53 2020 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Mon May 25 15:53:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ae93769
7
8 sys-apps/sed: pass --without-selinux to configure
9
10 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
11
12 sys-apps/sed/sed-4.8.ebuild | 3 +--
13 1 file changed, 1 insertion(+), 2 deletions(-)
14
15 diff --git a/sys-apps/sed/sed-4.8.ebuild b/sys-apps/sed/sed-4.8.ebuild
16 index 66b31632c46..bada9c0a526 100644
17 --- a/sys-apps/sed/sed-4.8.ebuild
18 +++ b/sys-apps/sed/sed-4.8.ebuild
19 @@ -38,12 +38,11 @@ src_configure() {
20 myconf+=( --program-prefix=g )
21 fi
22
23 - export ac_cv_search_setfilecon=$(usex selinux -lselinux)
24 - export ac_cv_header_selinux_{context,selinux}_h=$(usex selinux)
25 use static && append-ldflags -static
26 myconf+=(
27 $(use_enable acl)
28 $(use_enable nls)
29 + $(use_with selinux)
30 )
31 econf "${myconf[@]}"
32 }