mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Allow batch files with QProcess.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39548 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
563dd1fb3a
commit
d3c96214f3
@ -302,7 +302,10 @@ void SystemcallPrivate::startProcess(QString const & cmd, string const & path)
|
||||
setEnv("TEXINPUTS", prefix + texinputs_);
|
||||
}
|
||||
state = SystemcallPrivate::Starting;
|
||||
process_->start(cmd_);
|
||||
if (os::shell() == os::CMD_EXE)
|
||||
process_->start(QLatin1String("cmd /d /c ") + cmd_);
|
||||
else
|
||||
process_->start(cmd_);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user