diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:01:20 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:01:20 +0000 |
commit | b9c0654cb96f40c5a53ccc4fd8667085e7ec9c1e (patch) | |
tree | 0b9eabf7737c3a3f22139e34feb78b917963ae15 | |
parent | 2aefd2c272c36d0a0761ef0d715f75321d8014af (diff) |
APT::Immediate-Configure had inverted semantics(false m...
Author: doogie
Date: 2003-04-27 03:04:15 GMT
APT::Immediate-Configure had inverted semantics(false meant it was
enabled).
-rw-r--r-- | apt-pkg/packagemanager.cc | 4 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/apt-pkg/packagemanager.cc b/apt-pkg/packagemanager.cc index b0ebcdb59..a08ccd602 100644 --- a/apt-pkg/packagemanager.cc +++ b/apt-pkg/packagemanager.cc @@ -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++) diff --git a/debian/changelog b/debian/changelog index d76c1698a..d5e8de3f3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 |