Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults
Date: Wed, 30 Dec 2009 19:15:37
Message-Id: E1NQ417-0006LL-Td@stork.gentoo.org
1 abcd 09/12/30 19:15:33
2
3 Modified: make.defaults
4 Log:
5 Disable acl by default in linux profiles
6
7 Revision Changes Path
8 1.3 profiles/prefix/linux/make.defaults
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.3&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.3&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?r1=1.2&r2=1.3
13
14 Index: make.defaults
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v
17 retrieving revision 1.2
18 retrieving revision 1.3
19 diff -u -r1.2 -r1.3
20 --- make.defaults 30 Jun 2009 16:39:18 -0000 1.2
21 +++ make.defaults 30 Dec 2009 19:15:33 -0000 1.3
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2009 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.2 2009/06/30 16:39:18 darkside Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.3 2009/12/30 19:15:33 abcd Exp $
27
28 # 'Sane' defaults
29 ELIBC="glibc"
30 @@ -12,3 +12,7 @@
31
32 # build gcc with mudflap (pointer checking) and parallelization support
33 USE="${USE} mudflap openmp"
34 +
35 +# Turn off acl to help with bootstrapping - it isn't as helpful for prefix as it
36 +# can be for a non-prefix install
37 +USE="${USE} -acl"