summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/package/ebuild/_config/LicenseManager.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/pym/portage/package/ebuild/_config/LicenseManager.py b/pym/portage/package/ebuild/_config/LicenseManager.py
index c70344538..4ce1123b0 100644
--- a/pym/portage/package/ebuild/_config/LicenseManager.py
+++ b/pym/portage/package/ebuild/_config/LicenseManager.py
@@ -37,11 +37,16 @@ class LicenseManager(object):
# immutable attributes
result._accept_license_str = self._accept_license_str
+ memo[id(self._accept_license_str)] = self._accept_license_str
result._accept_license = self._accept_license
+ memo[id(self._accept_license)] = self._accept_license
+
+ # immutable attributes (internal policy ensures lack of mutation)
+ result._license_groups = self._license_groups
+ memo[id(self._license_groups)] = self._license_groups
# mutable attributes
result._plicensedict = deepcopy(self._plicensedict, memo)
- result._license_groups = deepcopy(self._license_groups, memo)
result._undef_lic_groups = deepcopy(self._undef_lic_groups, memo)
return result