diff options
Diffstat (limited to 'autowaf.py')
-rw-r--r-- | autowaf.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -273,7 +273,8 @@ def link_flags(env, lib): return ' '.join(map(lambda x: env['LIB_ST'] % x, env['LIB_' + lib])) def compile_flags(env, lib): - return ' '.join(map(lambda x: env['CPPPATH_ST'] % x, env['CPPPATH_' + lib])) + print env + return ' '.join(map(lambda x: env['CPPPATH_ST'] % x, env['INCLUDES_' + lib])) def set_recursive(): global g_is_child |