From: Arch Librarian Date: Mon, 20 Sep 2004 17:04:00 +0000 (+0000) Subject: * Fix version display for recommends (Closes: #219900) X-Git-Tag: 0.7.24ubuntu1~601 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/bab4266872149642be77369491436b0a559f312a?ds=sidebyside;hp=34e8862299d2668b5138e42ddcfcc5505fc9b07a * Fix version display for recommends (Closes: #219900) Author: mdz Date: 2003-11-10 07:09:53 GMT * Fix version display for recommends (Closes: #219900) --- 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 (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) --