env['NAME'] instead of env['_name']

This commit is contained in:
Eryn Wells 2015-10-03 10:41:15 -07:00
parent a408005eb1
commit b1f11e9732
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ for mode in (MODE.split(',') if MODE else ['debug']):
print 'Skipping invalid mode: {}'.format(mode)
break
out_dir = BUILD_DIR.Dir(env['_name'])
out_dir = BUILD_DIR.Dir(env['NAME'])
# Allow same directory includes.
env.Append(CPPPATH=['.'])