From: Zac Medico Date: Wed, 29 Sep 2010 17:11:57 +0000 (-0700) Subject: Add missing remember_source_file=True parameter to append_repo() call in the MaskMana... X-Git-Tag: v2.2_rc90~82 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6836cf6b90404e2e4f21c1445bbe6c5f4359f174;p=portage.git Add missing remember_source_file=True parameter to append_repo() call in the MaskManager constructor. --- diff --git a/pym/portage/package/ebuild/_config/MaskManager.py b/pym/portage/package/ebuild/_config/MaskManager.py index f41636b48..db94ee501 100644 --- a/pym/portage/package/ebuild/_config/MaskManager.py +++ b/pym/portage/package/ebuild/_config/MaskManager.py @@ -47,7 +47,7 @@ class MaskManager(object): lines = stack_lists([repo_lines], incremental=1, \ remember_source_file=True, warn_for_unmatched_removal=True, strict_warn_for_unmatched_removal=strict_umatched_removal) - repo_pkgmasklines.extend(append_repo(lines, repo.name)) + repo_pkgmasklines.extend(append_repo(lines, repo.name, remember_source_file=True)) #Read package.mask form the user's profile. Stack them in the end #to allow profiles to override masks from their parent profiles.