reporting: @report: throw explicit error if user has not passed compiler option on Windows

time-shift
Houtan Bastani 2013-05-15 11:53:43 +02:00
parent 55a782711a
commit fe68b69302
1 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,9 @@ if isempty(compiler)
system(['PATH=$PATH:/usr/texbin:/usr/local/bin:/usr/local/sbin;' ...
'which pdflatex'], '-echo');
elseif strcmp(computer, 'PCWIN') || strcmp(computer, 'PCWIN64')
% need to fill in for Windows
error(['@report.compile: On Windows machines, you must explicitly ' ...
'provide the ''compiler'' option or set the compiler ' ...
'variable in the Report class']);
else % gnu/linux
[status, compiler] = system('which pdflatex', '-echo');
end