diff options
author | Guillem Jover <guillem@debian.org> | 2009-11-17 08:01:18 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2009-11-17 08:01:18 +0100 |
commit | 2d57b4f715409cbe8cd3dc7a1cc2380ec9fd50de (patch) | |
tree | 73cc76f6d1a09c612f90354b956f924350d7c5ef /dselect | |
parent | aff8de143b8c2f559c2aa6042587603cc22c489f (diff) | |
parent | 3700faf371edb7b6939cf21d144fefbaf9bbdd5b (diff) | |
download | dpkg-2d57b4f715409cbe8cd3dc7a1cc2380ec9fd50de.tar.gz |
Merge branch sid (through commit '1.15.4.1')
Conflicts:
configure.ac
debian/changelog
Diffstat (limited to 'dselect')
-rw-r--r-- | dselect/pkglist.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dselect/pkglist.cc b/dselect/pkglist.cc index fd256552f..3051dd563 100644 --- a/dselect/pkglist.cc +++ b/dselect/pkglist.cc @@ -190,8 +190,12 @@ void packagelist::ensurestatsortinfo() { case pkginfo::stat_configfiles: if (!informativeversion(&pkg->available.version)) { table[index]->ssavail= ssa_notinst_gone; +// FIXME: Disable for now as a workaround, until dselect knows how to properly +// store seen packages. +#if 0 } else if (table[index]->original == pkginfo::want_unknown) { table[index]->ssavail= ssa_notinst_unseen; +#endif } else { table[index]->ssavail= ssa_notinst_seen; } |