Remove prints from SConscript

This commit is contained in:
Eryn Wells 2014-07-18 21:27:17 -07:00
parent 56b79c9cfb
commit 5517aadb0a
2 changed files with 0 additions and 2 deletions

View file

@ -13,7 +13,6 @@ subdirs = [
for d in subdirs:
dir_objs = env.SConscript(env.Dir(d).File('SConscript'), {'env': env})
print dir_objs
objs.extend(dir_objs)

View file

@ -15,5 +15,4 @@ objs = []
for f in files:
objs.append(env.Object(f))
print objs
Return('objs')