Procházet zdrojové kódy

* Fix version display for recommends (Closes: #219900)
Author: mdz
Date: 2003-11-10 07:09:53 GMT
* Fix version display for recommends (Closes: #219900)

Arch Librarian před 22 roky
rodič
revize
bab4266872
2 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. 2 2
      cmdline/apt-get.cc
  2. 1 0
      debian/changelog

+ 2 - 2
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;

+ 1 - 0
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)
 
  --