]> git.saurik.com Git - apt.git/commitdiff
disable the error discarding as it destroyes the error reporting about
authorDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 2 Apr 2011 13:51:37 +0000 (15:51 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 2 Apr 2011 13:51:37 +0000 (15:51 +0200)
failures with external solvers for now as long as i can't see a reason for it

cmdline/apt-get.cc

index 6ffecd777cb91b98c73c74f3ce5026f945633b02..a1264f54a1fa7d027f2c1a4c36629dea637acf36 100644 (file)
@@ -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;
       }