From f23fc0e0903c9fdf3f57a2c46d1f57abb4655e5c Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Tue, 7 Dec 2010 15:47:58 +0100 Subject: cmdline/apt-cache.cc: Create an error for apt-cache depends if packages could not found (LP: #647045) --- cmdline/apt-cache.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmdline') diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index 79654f477..45ea50433 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -588,7 +588,7 @@ bool ShowDepends(CommandLine &CmdL, bool const RevDepends) CacheSetHelperVirtuals helper(false); APT::VersionSet verset = APT::VersionSet::FromCommandLine(CacheFile, CmdL.FileList + 1, APT::VersionSet::CANDIDATE, helper); if (verset.empty() == true && helper.virtualPkgs.empty() == true) - return false; + return _error->Error(_("No packages found")); std::vector Shown(Cache->Head().PackageCount); bool const Recurse = _config->FindB("APT::Cache::RecurseDepends", false); -- cgit v1.2.3