]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/orderlist.cc
Small fix for loop handeling.
[apt.git] / apt-pkg / orderlist.cc
index 6dd494027abc547375676731878abaffcc46ca24..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;
 }
                                                                        /*}}}*/
@@ -1078,7 +1080,7 @@ bool pkgOrderList::CheckDep(DepIterator D)
              (D.Reverse() == true && Pkg == D.TargetPkg())) &&
             Cache[Pkg].InstallVer != *I)
            continue;
-      
+
         /* Try to find something that does not have the after flag set
            if at all possible */
         if (IsFlag(Pkg,After) == true)