From 7a678556d4311168ac1dacdd613eb7b94684e443 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Wed, 27 Feb 2008 20:13:16 +0900 Subject: [PATCH] scons: Place the .sconsign file on the builddir too. To avoid issues with different scons versions building the same source file --- common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.py b/common.py index e2650d6c8e2..b65ed7eaaa7 100644 --- a/common.py +++ b/common.py @@ -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 -- 2.30.2