diff options
author | 2011-02-28 19:44:39 +0000 | |
---|---|---|
committer | 2011-02-28 20:13:47 +0000 | |
commit | dfee795ea8980d78aa1b13d18f0bd39aff29bbce (patch) | |
tree | 3227d8fadb9ee377cf9adc305255db6781a33165 | |
parent | 22f59a9b5e9493a6168653d6428435287e8b94c9 (diff) | |
download | paludis-dfee795ea8980d78aa1b13d18f0bd39aff29bbce.tar.gz paludis-dfee795ea8980d78aa1b13d18f0bd39aff29bbce.tar.xz |
Use rcme_not_installed for filters
-rw-r--r-- | paludis/filter.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/paludis/filter.cc b/paludis/filter.cc index e16569231..62bbebea0 100644 --- a/paludis/filter.cc +++ b/paludis/filter.cc @@ -226,6 +226,11 @@ namespace { } + virtual const RepositoryContentMayExcludes may_excludes() const + { + return { rcme_not_installed }; + } + virtual std::shared_ptr<const RepositoryNameSet> repositories( const Environment * const env, const std::shared_ptr<const RepositoryNameSet> & repos) const |