[latexmkrc] only use lhs2TeX if it's an lhs file
This commit is contained in:
parent
2db011dbc3
commit
ae228da2ce
1 changed files with 4 additions and 1 deletions
|
@ -4,8 +4,11 @@ sub mylatex {
|
||||||
my $base = shift @_;
|
my $base = shift @_;
|
||||||
my $tex = "$base.tex";
|
my $tex = "$base.tex";
|
||||||
|
|
||||||
|
# Run the preprocessor
|
||||||
|
if (-e "$base.lhs" && `which lhs2TeX` ne "") {
|
||||||
# Run the preprocessor
|
# Run the preprocessor
|
||||||
system('lhs2TeX', '--poly', '-o', $tex, "$base.lhs") == 0 or return $?;
|
system('lhs2TeX', '--poly', '-o', $tex, "$base.lhs") == 0 or return $?;
|
||||||
|
}
|
||||||
# Run pdflatex
|
# Run pdflatex
|
||||||
my $return = system('pdflatex', @_, $tex);
|
my $return = system('pdflatex', @_, $tex);
|
||||||
system "echo INPUT $base.lhs >> $aux_dir1$base.fls";
|
system "echo INPUT $base.lhs >> $aux_dir1$base.fls";
|
||||||
|
|
Loading…
Reference in a new issue