Remove asyprocess references from SConscript files.
authorW. Trevor King <wking@tremily.us>
Sun, 17 Jun 2012 20:07:10 +0000 (16:07 -0400)
committerW. Trevor King <wking@tremily.us>
Sun, 17 Jun 2012 20:07:10 +0000 (16:07 -0400)
src/SConscript
src/figures/asy/SConscript

index b3e814ece00a4455609d60c3266d3d9cc13e7db3..1266d4921f40d9a9217048f8ef1390c60c56e1c9 100644 (file)
@@ -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?)
index e2f23603ad10b4e00824be582acd89fc5be316cc..f4c0710412973c24c20045bccf0eb7fb2975a983 100644 (file)
@@ -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.