From: David Kalnischkies Date: Sat, 2 Apr 2011 13:51:37 +0000 (+0200) Subject: disable the error discarding as it destroyes the error reporting about X-Git-Tag: 0.9.0~91^2~10^2~3 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/56d53b54e795479194eb653741c5a816698db43f?ds=inline disable the error discarding as it destroyes the error reporting about failures with external solvers for now as long as i can't see a reason for it --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 6ffecd777..a1264f54a 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1887,7 +1887,7 @@ bool DoInstall(CommandLine &CmdL) // Call the scored problem resolver Fix->InstallProtect(); if (Fix->Resolve(true) == false) - _error->Discard(); + ; //FIXME: is there a valid reason for? _error->Discard(); delete Fix; }