Просмотр исходного кода

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

David Kalnischkies лет назад: 15
Родитель
Сommit
56d53b54e7
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      cmdline/apt-get.cc

+ 1 - 1
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;
       }