diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-07-29 16:56:03 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-07-29 16:56:03 +0200 |
commit | 7146a53c4c6803bff0ddec739f5ca83231cb2b14 (patch) | |
tree | 797debe7b600b8828ede64e3c43507f5c9add047 | |
parent | 870ce08fa327a889cfbd9ca67d7a33808b5482f4 (diff) |
* cmdline/apt-cache.cc:
- do not show Breaks in unmet
-rw-r--r-- | cmdline/apt-cache.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index f10ea48be..d73111b6a 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -102,15 +102,13 @@ bool UnMet(CommandLine &CmdL) if (End->Type != pkgCache::Dep::PreDepends && End->Type != pkgCache::Dep::Depends && End->Type != pkgCache::Dep::Suggests && - End->Type != pkgCache::Dep::Recommends && - End->Type != pkgCache::Dep::DpkgBreaks) + End->Type != pkgCache::Dep::Recommends) continue; // Important deps only if (Important == true) if (End->Type != pkgCache::Dep::PreDepends && - End->Type != pkgCache::Dep::Depends && - End->Type != pkgCache::Dep::DpkgBreaks) + End->Type != pkgCache::Dep::Depends) continue; // Verify the or group |