diff options
author | Christopher Baines <cbaines8@gmail.com> | 2011-07-14 13:26:19 +0100 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2011-07-14 13:26:19 +0100 |
commit | e2a5ff0c3398380b15a09d810effffc5eb96ea53 (patch) | |
tree | eac3863def2267b1484ea6b5cb19b580183ad4f5 /apt-pkg/orderlist.cc | |
parent | aaf991a8640da0d18f8e9bbea6d9bcda166fb60c (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.cc | 4 |
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; } /*}}}*/ |