summaryrefslogtreecommitdiff
path: root/apt-private/private-list.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-11-26 08:17:29 +0100
committerMichael Vogt <mvo@debian.org>2013-11-26 08:17:29 +0100
commite1dc051a11c2860abebf626df0470a5feb03677a (patch)
treeaf07bd255c187af89becc176cba3b43304563734 /apt-private/private-list.cc
parent500347df3c544b1633215477d485d43103732743 (diff)
add APT::Cmd::List-Include-Summary
Diffstat (limited to 'apt-private/private-list.cc')
-rw-r--r--apt-private/private-list.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/apt-private/private-list.cc b/apt-private/private-list.cc
index 6993cd797..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, false);
+ ListSingleVersion(CacheFile, records, V, outs, includeSummary);
output_map.insert(std::make_pair<std::string, std::string>(
V.ParentPkg().Name(), outs.str()));
}