summaryrefslogtreecommitdiff
path: root/apt-pkg/depcache.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:33 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:33 +0000
commitc9a64a4dc57e49e9a92e5e8c3e32ea9619534a58 (patch)
treed12ee4aec25d2c64cef4fdf76e42fc098b90d249 /apt-pkg/depcache.cc
parentf40e3a64fbfd692a783fe4442ff0efcd5a9b3a8e (diff)
Do not count sizes of to be configured packages
Author: jgg Date: 1999-04-16 21:46:13 GMT Do not count sizes of to be configured packages
Diffstat (limited to 'apt-pkg/depcache.cc')
-rw-r--r--apt-pkg/depcache.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc
index 1529eb364..7d1ff05ea 100644
--- a/apt-pkg/depcache.cc
+++ b/apt-pkg/depcache.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: depcache.cc,v 1.16 1999/04/12 04:21:20 jgg Exp $
+// $Id: depcache.cc,v 1.17 1999/04/16 21:46:13 jgg Exp $
/* ######################################################################
Dependency Cache - Caches Dependency information.
@@ -205,10 +205,7 @@ void pkgDepCache::AddSizes(const PkgIterator &Pkg,long Mult)
if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure &&
P.Keep() == true)
- {
- iUsrSize += Mult*P.InstVerIter(*this)->InstalledSize;
return;
- }
// Compute the size data
if (P.NewInstall() == true)