]> git.saurik.com Git - apt.git/commitdiff
* Make APT::Get::Show-Upgraded (aka apt-get -u) default...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:03:21 +0000 (17:03 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:03:21 +0000 (17:03 +0000)
Author: mdz
Date: 2003-08-22 02:46:09 GMT
* Make APT::Get::Show-Upgraded (aka apt-get -u) default to true.

cmdline/apt-get.cc
debian/changelog

index 3c03e0fa3db1200c9c5110018bf75cbc0e218500..328d5dc87656d19371b27865d92584a167b7510b 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-get.cc,v 1.139 2003/08/22 01:51:01 mdz Exp $
+// $Id: apt-get.cc,v 1.140 2003/08/22 02:46:09 mdz Exp $
 /* ######################################################################
    
    apt-get - Cover for dpkg
@@ -693,7 +693,7 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true,
    if (ShwKept == true)
       ShowKept(c1out,Cache);
    Fail |= !ShowHold(c1out,Cache);
-   if (_config->FindB("APT::Get::Show-Upgraded",false) == true)
+   if (_config->FindB("APT::Get::Show-Upgraded",true) == true)
       ShowUpgraded(c1out,Cache);
    Fail |= !ShowDowngraded(c1out,Cache);
    if (_config->FindB("APT::Get::Download-Only",false) == false)
index 71768eba8a9d2d3482af85c01390f56035a39d2c..923c7a0a6733b4620b73e6d0fba66ad3858a3ce7 100644 (file)
@@ -20,6 +20,7 @@ apt (0.5.10) unstable; urgency=low
   * Change upgraded/newly installed/not fully installed or removed
     messages to be consistent and somewhat shorter (some translations
     exceeded 80 characters even in the simplest case)
+  * Make APT::Get::Show-Upgraded (aka apt-get -u) default to true.
 
  --