diff options
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -109,5 +109,8 @@ def make_build_dir(env): if env['debug']: build_subdir += "-debug" build_dir = os.path.join(build_topdir, build_subdir) + # Place the .sconsign file on the builddir too, to avoid issues with different scons + # versions building the same source file + env.SConsignFile(os.path.join(build_dir, '.sconsign')) return build_dir |