diff options
author | 2009-05-02 02:38:25 +0000 | |
---|---|---|
committer | 2009-05-02 02:38:25 +0000 | |
commit | 8d9926f9c8247da5d09589df8ec11c1c529123cf (patch) | |
tree | 07f5ccc61e5aa8a7f350a98b00e6cf76555bb194 /sys-libs | |
parent | Forgot to inherit eutils. Again. (diff) | |
download | gentoo-2-8d9926f9c8247da5d09589df8ec11c1c529123cf.tar.gz gentoo-2-8d9926f9c8247da5d09589df8ec11c1c529123cf.tar.bz2 gentoo-2-8d9926f9c8247da5d09589df8ec11c1c529123cf.zip |
Disable selinux on crosscompile; bug #186780
(Portage version: 2.2_rc31/cvs/Linux i686)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/glibc/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/glibc/files/eblits/src_compile.eblit | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog index 8da2aa193ee4..e05f2a8f3f6a 100644 --- a/sys-libs/glibc/ChangeLog +++ b/sys-libs/glibc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/glibc # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.622 2009/04/13 15:17:59 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.623 2009/05/02 02:38:22 halcy0n Exp $ + + 02 May 2009; Mark Loeser <halcy0n@gentoo.org> + files/eblits/src_compile.eblit: + Disable selinux on crosscompile; bug #186780 13 Apr 2009; Jeroen Roovers <jer@gentoo.org> glibc-2.8_p20080602-r1.ebuild: diff --git a/sys-libs/glibc/files/eblits/src_compile.eblit b/sys-libs/glibc/files/eblits/src_compile.eblit index c7ce858acd30..b4d0318abf8c 100644 --- a/sys-libs/glibc/files/eblits/src_compile.eblit +++ b/sys-libs/glibc/files/eblits/src_compile.eblit @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_compile.eblit,v 1.6 2008/11/29 21:05:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_compile.eblit,v 1.7 2009/05/02 02:38:25 halcy0n Exp $ glibc_do_configure() { local myconf @@ -55,7 +55,8 @@ glibc_do_configure() { # Since SELinux support is only required for nscd, only enable it if: # 1. USE selinux # 2. only for the primary ABI on multilib systems - if use selinux ; then + # 3. Not a crosscompile + if ! is_crosscompile && use selinux ; then if use multilib || has_multilib_profile ; then if is_final_abi ; then myconf="${myconf} --with-selinux" |