commit: 6c38e84d36291e1bc9ebf1a924a727cf240f65f3 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sat May 2 08:37:53 2020 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sat May 2 08:37:53 2020 +0000 URL: https://gitweb.gentoo.org/proj/ufed.git/commit/?id=6c38e84d
Mark package.use flags as local rather than global. Thanks to Martin Väth <martin <AT> mvath.de> for the patch. Bug: https://bugs.gentoo.org/549042 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> Portage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Portage.pm b/Portage.pm index 0815fb2..3b1791e 100644 --- a/Portage.pm +++ b/Portage.pm @@ -938,7 +938,7 @@ sub _read_package_use for my $flag (@flags) { my $state = $flag =~ s/^-// || 0; - _add_temp($flag, "global"); + _add_temp($flag, "local"); _add_temp($flag, $pkg); if ($state) {
