From: W. Trevor King Date: Sun, 17 Jun 2012 20:07:10 +0000 (-0400) Subject: Remove asyprocess references from SConscript files. X-Git-Tag: v1.0~343 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b5c43f946371317336863735537baad9f752e113;p=thesis.git Remove asyprocess references from SConscript files. --- diff --git a/src/SConscript b/src/SConscript index b3e814e..1266d49 100644 --- a/src/SConscript +++ b/src/SConscript @@ -33,8 +33,8 @@ if not env.GetOption('clean'): # Include sub-SConscript files with rules for figures, packages, etc. env = include_child_SConscripts(env, SConscript) -# Alias the thesis' base latex, which is used by asyprocess when -# building the Asymptote graphics. +# Alias the thesis' base latex, which is used by when building the +# Asymptote graphics. env.Alias('latex-base', [Glob('*.tex'), env.Alias('extra-packages')]) # Alias Bibtex files (?since SCons' LaTeX scanned isn't picking them up?) diff --git a/src/figures/asy/SConscript b/src/figures/asy/SConscript index e2f2360..f4c0710 100644 --- a/src/figures/asy/SConscript +++ b/src/figures/asy/SConscript @@ -1,7 +1,7 @@ # Get the passed in environment. Import('env') -asy = env.Alias('asytools', ['asyprocess', 'wtk_graph.asy']) +asy = env.Alias('asytools', ['wtk_graph.asy']) env.Depends(asy, Alias('latex-base')) # Pass back the modified environment.