mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
When getting packages via miktex 3 minutes is to short for
the timeout. 30 minutes should be enough, also for very big documents. #7228 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37176 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
51558fbf23
commit
826298831d
@ -225,7 +225,8 @@ int Systemcall::startscript(Starttype how, string const & what, bool process_eve
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!d.waitWhile(SystemcallPrivate::Running, process_events, 180000)) {
|
||||
int timeout_min = 30;
|
||||
if (!d.waitWhile(SystemcallPrivate::Running, process_events, timeout_min * 60 * 1000)) {
|
||||
LYXERR0("Systemcall: '" << cmd << "' did not finish!");
|
||||
LYXERR0("error " << d.errorMessage());
|
||||
LYXERR0("status " << d.exitStatusMessage());
|
||||
|
Loading…
Reference in New Issue
Block a user