Gentoo Archives: gentoo-dev

From: Mike Gilbert <floppym@g.o>
To: gentoo-dev@l.g.o
Cc: toolchain@g.o, base-system@g.o, releng@g.o, Mike Gilbert <floppym@g.o>
Subject: [gentoo-dev] [PATCH] profiles: remove USE="cxx" from the base profile
Date: Mon, 09 Mar 2020 15:26:07
Message-Id: 20200309152548.747169-1-floppym@gentoo.org
1 This was added back in the days when all toolchain ebuilds had EAPI=0
2 and IUSE defaults were not an option. toolchain.eclass now supports
3 newer EAPIs, and sets IUSE="+cxx".
4
5 Signed-off-by: Mike Gilbert <floppym@g.o>
6 ---
7 profiles/base/make.defaults | 6 ------
8 1 file changed, 6 deletions(-)
9
10 diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults
11 index f4782af3b138..cf27a009b57c 100644
12 --- a/profiles/base/make.defaults
13 +++ b/profiles/base/make.defaults
14 @@ -102,12 +102,6 @@ LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses te
15 # Updated to include ruby25 on 2019-07-17
16 RUBY_TARGETS="ruby24 ruby25"
17
18 -# Samuli Suominen <ssuominen@g.o> (2009-12-03)
19 -# Enable USE cxx by default so base-system and toolchain pkgs can start using USE cxx
20 -# instead of USE nocxx.
21 -# https://archives.gentoo.org/gentoo-dev/msg_a181cd0d36600067b599f4b996c6989f.xml
22 -USE="${USE} cxx"
23 -
24 # Enable extended filesystem attribute support by default.
25 # https://archives.gentoo.org/gentoo-dev/message/ba0e3457e4b807e79816f0df03566af0
26 USE="${USE} xattr"
27 --
28 2.25.1

Replies

Subject Author
[gentoo-dev] Re: [PATCH] profiles: remove USE="cxx" from the base profile Sergei Trofimovich <slyfox@g.o>