Oops in crictical handling
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:54:21 +0000 (16:54 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:54:21 +0000 (16:54 +0000)
Author: jgg
Date: 1999-07-19 01:49:44 GMT
Oops in crictical handling

apt-pkg/orderlist.cc

index 614c158..cb52d16 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: orderlist.cc,v 1.6 1999/07/12 03:40:37 jgg Exp $
+// $Id: orderlist.cc,v 1.7 1999/07/19 01:49:44 jgg Exp $
 /* ######################################################################
 
    Order List - Represents and Manipulates an ordered list of packages.
@@ -439,7 +439,7 @@ bool pkgOrderList::VisitProvides(DepIterator D,bool Critical)
         continue;
       
       // Skip over missing files
-      if (IsMissing(D.ParentPkg()) == true)
+      if (Critical == false && IsMissing(D.ParentPkg()) == true)
         continue;
         
       if (VisitNode(Pkg) == false)