diff options
author | Michael Vogt <mvo@debian.org> | 2013-11-28 19:45:58 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-11-28 19:45:58 +0100 |
commit | 83ef59c23699ed3cd3dc9d6d907a0d0359ab2fee (patch) | |
tree | 7862d1a16c3a445da31c53c1565c79704b8462d0 /apt-private/private-list.cc | |
parent | c872ac503156caff9d0e33306c4121dd667a6567 (diff) | |
parent | e1dc051a11c2860abebf626df0470a5feb03677a (diff) |
Merge remote-tracking branch 'mvo/feature/short-list' into debian/sid
Diffstat (limited to 'apt-private/private-list.cc')
-rw-r--r-- | apt-private/private-list.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apt-private/private-list.cc b/apt-private/private-list.cc index 8c61fcae8..08851eb7e 100644 --- a/apt-private/private-list.cc +++ b/apt-private/private-list.cc @@ -132,6 +132,8 @@ bool List(CommandLine &Cmd) std::map<std::string, std::string> output_map; std::map<std::string, std::string>::const_iterator K; + bool includeSummary = _config->FindB("APT::Cmd::List-Include-Summary"); + PackageNameMatcher matcher(patterns); LocalitySortedVersionSet bag; OpTextProgress progress; @@ -149,7 +151,7 @@ bool List(CommandLine &Cmd) output_map.insert(std::make_pair<std::string, std::string>( V.ParentPkg().Name(), outs.str())); } else { - ListSingleVersion(CacheFile, records, V, outs); + ListSingleVersion(CacheFile, records, V, outs, includeSummary); output_map.insert(std::make_pair<std::string, std::string>( V.ParentPkg().Name(), outs.str())); } |