aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v0/sysenv.rb
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2008-07-12 14:49:01 -0400
committerRalph Amissah <ralph@amissah.com>2008-07-12 14:49:01 -0400
commitfac785a480a80903ef03307e7c320359ec067335 (patch)
treedf20b832ab58dc52b34f23289bb34f2232d682da /lib/sisu/v0/sysenv.rb
parentUpdated sisu-0.67.4 (diff)
parentchangelog and version updated (diff)
Merge branch 'upstream' into debian/sid
Diffstat (limited to 'lib/sisu/v0/sysenv.rb')
-rw-r--r--lib/sisu/v0/sysenv.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sisu/v0/sysenv.rb b/lib/sisu/v0/sysenv.rb
index bde769e2..3d01729e 100644
--- a/lib/sisu/v0/sysenv.rb
+++ b/lib/sisu/v0/sysenv.rb
@@ -683,15 +683,15 @@ module SiSU_Env
if @input =~/landscape\.tex$/
%{#{texpdf} -interaction=#{mode} -fmt=xelatex -papersize="#{papersize} -l" #@input #{tell}\n}
else
- "#{texpdf} -interaction=#{mode} -fmt=xelatex #@input #{tell}\n"
+ %{#{texpdf} -interaction=#{mode} -fmt=xelatex -papersize="#{papersize}" #@input #{tell}\n}
end
when /xelatex/
if @input =~/landscape\.tex$/
%{#{texpdf} -interaction=#{mode} -papersize="#{papersize} -l" #@input #{tell}\n}
else
- "#{texpdf} -interaction=#{mode} #@input #{tell}\n"
+ %{#{texpdf} -interaction=#{mode} -papersize="#{papersize}" #@input #{tell}\n}
end
- when /pdftex/; "#{texpdf} -interaction=#{mode} -fmt=pdflatex #@input #{tell}\n"
+ when /pdftex/; "#{texpdf} -interaction=#{mode} -fmt=pdflatex #@input #{tell}\n"
when /pdflatex/; "#{texpdf} -interaction=#{mode} #@input #{tell}\n"
end
system(texpdf_cmd)