diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:04:00 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:04:00 +0000 |
commit | bab4266872149642be77369491436b0a559f312a (patch) | |
tree | 89ccf678c0360d810a52b7b7f022d198bf4d0be5 | |
parent | 34e8862299d2668b5138e42ddcfcc5505fc9b07a (diff) |
* Fix version display for recommends (Closes: #219900)
Author: mdz
Date: 2003-11-10 07:09:53 GMT
* Fix version display for recommends (Closes: #219900)
-rw-r--r-- | cmdline/apt-get.cc | 4 | ||||
-rw-r--r-- | debian/changelog | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 9906ad710..99cc35be6 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.144 2003/10/29 17:56:31 mdz Exp $ +// $Id: apt-get.cc,v 1.145 2003/11/10 07:09:53 mdz Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -1588,7 +1588,7 @@ bool DoInstall(CommandLine &CmdL) if (int(RecommendsList.find(target)) > -1) break; RecommendsList += target; - SuggestsVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n"; + RecommendsVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n"; } if (Start == End) break; diff --git a/debian/changelog b/debian/changelog index 25d99de57..bfe9f6ebb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,7 @@ apt (0.5.15) unstable; urgency=low <sylvain.pasche@switzerland.org> (Closes: #217152) * Let apt-get build-dep try alternatives if the installed package doesn't meet version requirements (Closes: #214736) + * Fix version display for recommends (Closes: #219900) -- |