cosmetic changes in the demos/tex/wscript file

This commit is contained in:
Thomas Nagy 2013-08-27 12:19:32 +02:00
parent bced7cedb0
commit 07cb27929e
1 changed files with 6 additions and 2 deletions

View File

@ -11,8 +11,8 @@ def build(bld):
# now create your tex object for compiling the files
obj = bld(
features = 'tex',
type='latex', # default is pdflatex
source = 'document.ltx document-glossaries.ltx' # mandatory, the source
type = 'latex', # default is pdflatex
source = 'document.ltx' # mandatory, the source
)
# optional parameters
@ -20,3 +20,7 @@ def build(bld):
obj.prompt = 1 # put 0 for the batchmode (conceals the debug output)
obj.deps = 'crossreferencing.ltx' # use this to give dependencies directly
# or more simply, for a pdf..
bld(features='tex', source='document-glossaries.ltx')