summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:55:12 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:55:12 +0000
commit70777d4b589007eeb840d9a67934f1e648f302d7 (patch)
treebfdc422b503c5b7e3a683480b819e29777e8c92d
parenta62f8bb9110edd33cebe3968ab349657a99fa00a (diff)
Fixed depends error
Author: jgg Date: 1999-11-17 01:52:01 GMT Fixed depends error
-rw-r--r--apt-pkg/algorithms.cc7
-rw-r--r--cmdline/apt-get.cc4
-rw-r--r--debian/changelog1
3 files changed, 8 insertions, 4 deletions
diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc
index 0df6c0a75..49e964f23 100644
--- a/apt-pkg/algorithms.cc
+++ b/apt-pkg/algorithms.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: algorithms.cc,v 1.28 1999/10/31 23:58:35 jgg Exp $
+// $Id: algorithms.cc,v 1.29 1999/11/17 01:52:01 jgg Exp $
/* ######################################################################
Algorithms - A set of misc algorithms
@@ -738,7 +738,10 @@ bool pkgProblemResolver::Resolve(bool BrokenFix)
if (InOr == true)
{
if (OldEnd == LEnd && OrOp == OrRemove)
- Cache.MarkDelete(I);
+ {
+ if ((Flags[I->ID] & Protected) != Protected)
+ Cache.MarkDelete(I);
+ }
if (OldEnd == LEnd && OrOp == OrKeep)
Cache.MarkKeep(I);
}
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index 0dd396a62..11b2d964b 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-get.cc,v 1.88 1999/11/16 03:16:34 jgg Exp $
+// $Id: apt-get.cc,v 1.89 1999/11/17 01:52:01 jgg Exp $
/* ######################################################################
apt-get - Cover for dpkg
@@ -842,7 +842,7 @@ bool TryToInstall(pkgCache::PkgIterator Pkg,pkgDepCache &Cache,
}
Fix.Clear(Pkg);
- Fix.Protect(Pkg);
+ Fix.Protect(Pkg);
if (Remove == true)
{
Fix.Remove(Pkg);
diff --git a/debian/changelog b/debian/changelog
index 5c5b17cb8..bb951e111 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ apt (0.3.14.1) unstable; urgency=low
* Fixed cast error in byteswap macro and supporting code. Closes: #50093
* Fixed buffer overflow for wide terminal sizes. Closes: #50295
* Made -s and clean not do anything. Closes: #50238
+ * Problem with Protected packages and the new OR code.
-- Ben Gertzfield <che@debian.org> Sun, 7 Nov 1999 20:21:25 -0800