summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 07adcd224..93031b796 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -2112,8 +2112,10 @@ class config(object):
except exception.InvalidDependString:
licenses = set()
licenses.discard('||')
- if '*' not in settings._accept_license:
- licenses.intersection_update(settings._accept_license)
+ # Do not expand * here, since that would make it appear to the
+ # check_license() function as if the user has accepted licenses
+ # which have not really been explicitly accepted.
+ licenses.intersection_update(settings._accept_license)
return ' '.join(sorted(licenses))
def _restrict(self, use, settings):