]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/orderlist.cc
Applied DonKult (David)'s excellent fix for inproving the loop management. Now both...
[apt.git] / apt-pkg / orderlist.cc
index a17a70112c74878d04a987a4eccacc9d6a2d581a..1e412ead52bbb4a0beb1884974346ba8f91b6a37 100644 (file)
@@ -1021,8 +1021,10 @@ bool pkgOrderList::AddLoop(DepIterator D)
    Loops[LoopCount++] = D;
    
    // Mark the packages as being part of a loop.
-   Flag(D.TargetPkg(),Loop);
-   Flag(D.ParentPkg(),Loop);
+   //Flag(D.TargetPkg(),Loop);
+   //Flag(D.ParentPkg(),Loop);
+   /* This is currently disabled because the Loop flag is being used for
+      loop management in the package manager. Check the orderlist.h file for more info */
    return true;
 }
                                                                        /*}}}*/