summaryrefslogtreecommitdiff
path: root/apt-pkg/orderlist.cc
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2011-07-14 13:26:19 +0100
committerChristopher Baines <cbaines8@gmail.com>2011-07-14 13:26:19 +0100
commite2a5ff0c3398380b15a09d810effffc5eb96ea53 (patch)
treeeac3863def2267b1484ea6b5cb19b580183ad4f5 /apt-pkg/orderlist.cc
parentaaf991a8640da0d18f8e9bbea6d9bcda166fb60c (diff)
More changes to make imediate configuration work for all packages,
I have stolen the Loop flag from orderlist.cc as it didnt seem to use it anymore.
Diffstat (limited to 'apt-pkg/orderlist.cc')
-rw-r--r--apt-pkg/orderlist.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/orderlist.cc b/apt-pkg/orderlist.cc
index a17a70112..eaa5ea20a 100644
--- a/apt-pkg/orderlist.cc
+++ b/apt-pkg/orderlist.cc
@@ -1021,8 +1021,8 @@ 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);
return true;
}
/*}}}*/