mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-20 09:08:07 +02:00
scons: Place the .sconsign file on the builddir too.
To avoid issues with different scons versions building the same source file
This commit is contained in:
parent
e49905b57c
commit
7a678556d4
1 changed files with 3 additions and 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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue