Gentoo Archives: gentoo-user

From: Alexander Kapshuk <alexander.kapshuk@×××××.com>
To: Gentoo mailing list <gentoo-user@l.g.o>
Subject: Re: [gentoo-user] Overriding environment variables per package
Date: Thu, 15 Jan 2015 18:12:08
Message-Id: CAJ1xhMXzutMn3UOHMi2ZhyNksQwbqWkyG5zxf-iRcFDvv2058g@mail.gmail.com
In Reply to: Re: [gentoo-user] Overriding environment variables per package by Neil Bothwick
1 On Thu, Jan 15, 2015 at 7:38 PM, Neil Bothwick <neil@××××××××××.uk> wrote:
2
3 > On Thu, 15 Jan 2015 16:36:08 +0200, Alexander Kapshuk wrote:
4 >
5 > > (3). cat package.env
6 > > app-cdr/xfburn debug.conf
7 > > (5). FEATURES="nostrip" emerge -av xfburn
8 > >
9 > > I've had to define FEATURES on the command line as shown in (5), for
10 > > nostrip to apply. For some reason, enabling the setting in
11 > > /etc/portage/env/debug.conf did not seem to work for me.
12 >
13 > That should be
14 >
15 > % cat package.env
16 > app-cdr/xfburn debug.conf
17 >
18 > % cat env/debug.conf
19 > FEATURES="nostrip"
20 >
21 >
22 > --
23 > Neil Bothwick
24 >
25 > Nixon's Principal: If 2 wrongs don't make a right, try 3.
26 >
27
28 I see where I went wrong. package.env goes into /etc/portage, not in
29 /etc/portage/env. Thanks for pointing that out.
30
31 Thanks to all those who have replied.