summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-07-30 09:19:13 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2010-07-30 09:19:13 +0200
commitc39b587209f2c3993123e40d33c85de12180a70c (patch)
tree122220a0136721fb8e65334ab6e42c273870491f /apt-pkg
parentcd02388d4877038e13326d84c5745c44acb0ce61 (diff)
parent4ed3806e625a4b5c148e27dba5384f133dd77c1a (diff)
* debian/control:
- add dependency on zlib-dev for libapt-pkg-dev * apt-pkg/cacheset.cc: - make CacheSetHelper::canNotFindAllVer display a notice only (for compat reasons). Otherwise tools like sbuild blow up
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/cacheset.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/cacheset.cc b/apt-pkg/cacheset.cc
index f17a9e0d5..84021a2b7 100644
--- a/apt-pkg/cacheset.cc
+++ b/apt-pkg/cacheset.cc
@@ -464,7 +464,7 @@ PackageSet CacheSetHelper::canNotFindPackage(pkgCacheFile &Cache, std::string co
VersionSet CacheSetHelper::canNotFindAllVer(pkgCacheFile &Cache,
pkgCache::PkgIterator const &Pkg) {
if (ShowError == true)
- _error->Error(_("Can't select versions from package '%s' as it purely virtual"), Pkg.FullName(true).c_str());
+ _error->Notice(_("Can't select versions from package '%s' as it purely virtual"), Pkg.FullName(true).c_str());
return VersionSet();
}
/*}}}*/