Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/ufed:master commit in: /
Date: Sat, 02 May 2020 08:38:16
Message-Id: 1588408673.6c38e84d36291e1bc9ebf1a924a727cf240f65f3.ulm@gentoo
1 commit: 6c38e84d36291e1bc9ebf1a924a727cf240f65f3
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 2 08:37:53 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 2 08:37:53 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/ufed.git/commit/?id=6c38e84d
7
8 Mark package.use flags as local rather than global.
9
10 Thanks to Martin Väth <martin <AT> mvath.de> for the patch.
11
12 Bug: https://bugs.gentoo.org/549042
13 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
14
15 Portage.pm | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/Portage.pm b/Portage.pm
19 index 0815fb2..3b1791e 100644
20 --- a/Portage.pm
21 +++ b/Portage.pm
22 @@ -938,7 +938,7 @@ sub _read_package_use
23 for my $flag (@flags) {
24 my $state = $flag =~ s/^-// || 0;
25
26 - _add_temp($flag, "global");
27 + _add_temp($flag, "local");
28 _add_temp($flag, $pkg);
29
30 if ($state) {