diff options
author | Jonathan Callen <jcallen@gentoo.org> | 2009-12-30 19:15:33 +0000 |
---|---|---|
committer | Jonathan Callen <jcallen@gentoo.org> | 2009-12-30 19:15:33 +0000 |
commit | f753edfd9905b8848d087b4f930beb21b931bb80 (patch) | |
tree | 1fbb0b051c545dc05ea79f8f0b0c0f438d6affb4 /profiles/prefix/linux | |
parent | Use proper task name for USE=doc, partially fixing #298910. (diff) | |
download | historical-f753edfd9905b8848d087b4f930beb21b931bb80.tar.gz historical-f753edfd9905b8848d087b4f930beb21b931bb80.tar.bz2 historical-f753edfd9905b8848d087b4f930beb21b931bb80.zip |
Disable acl by default in linux profiles
Diffstat (limited to 'profiles/prefix/linux')
-rw-r--r-- | profiles/prefix/linux/make.defaults | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/profiles/prefix/linux/make.defaults b/profiles/prefix/linux/make.defaults index f2c183320d9d..91c860f8923d 100644 --- a/profiles/prefix/linux/make.defaults +++ b/profiles/prefix/linux/make.defaults @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.2 2009/06/30 16:39:18 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.3 2009/12/30 19:15:33 abcd Exp $ # 'Sane' defaults ELIBC="glibc" @@ -12,3 +12,7 @@ USE="${USE} iconv" # build gcc with mudflap (pointer checking) and parallelization support USE="${USE} mudflap openmp" + +# Turn off acl to help with bootstrapping - it isn't as helpful for prefix as it +# can be for a non-prefix install +USE="${USE} -acl" |