diff options
| author | Julian Andres Klode <jak@debian.org> | 2012-03-05 14:57:11 +0100 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2012-03-05 14:57:11 +0100 |
| commit | 945099df10a67c3c7f52fcfef165a2782e51809e (patch) | |
| tree | 3bc1dc06b8841b312e011be2d4d8b20364fcb961 /apt-pkg/deb | |
| parent | bce778a312f88011a891e079b0a0f6d58f663479 (diff) | |
* apt-pkg/deb/deblistparser.cc:
- Set the Essential flag on APT instead of only Important
Diffstat (limited to 'apt-pkg/deb')
| -rw-r--r-- | apt-pkg/deb/deblistparser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index bdb50f6bf..84e6c38c5 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -249,7 +249,7 @@ bool debListParser::UsePackage(pkgCache::PkgIterator &Pkg, return false; if (strcmp(Pkg.Name(),"apt") == 0) - Pkg->Flags |= pkgCache::Flag::Important; + Pkg->Flags |= pkgCache::Flag::Essential | pkgCache::Flag::Important; if (ParseStatus(Pkg,Ver) == false) return false; |
