APT::Immediate-Configure had inverted semantics(false m...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:01:20 +0000 (17:01 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:01:20 +0000 (17:01 +0000)
Author: doogie
Date: 2003-04-27 03:04:15 GMT
APT::Immediate-Configure had inverted semantics(false meant it was
enabled).

apt-pkg/packagemanager.cc
debian/changelog

index b0ebcdb..a08ccd6 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: packagemanager.cc,v 1.29 2002/04/02 06:01:49 jgg Exp $
+// $Id: packagemanager.cc,v 1.30 2003/04/27 03:04:15 doogie Exp $
 /* ######################################################################
 
    Package Manager - Abstacts the package manager
@@ -133,7 +133,7 @@ bool pkgPackageManager::CreateOrderList()
    delete List;
    List = new pkgOrderList(&Cache);
    
-   bool NoImmConfigure = _config->FindB("APT::Immediate-Configure",false);
+   bool NoImmConfigure = !_config->FindB("APT::Immediate-Configure",true);
    
    // Generate the list of affected packages and sort it
    for (PkgIterator I = Cache.PkgBegin(); I.end() == false; I++)
index d76c169..d5e8de3 100644 (file)
@@ -118,6 +118,8 @@ apt (0.5.4.9) unstable; urgency=low
   * Add a rdepends command to apt-cache.  Closes: #159864.
   * When building the dpkg command line, allow for 8192 chars to be used,
     instead of only 1024.
+  * APT::Immediate-Configure had inverted semantics(false meant it was
+    enabled).  Closes: #173619.
 
  -- Adam Heath <doogie@debian.org>  Sun, 02 Feb 2003 02:54:45 -0600