mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
scons: Only build progs when explicitly requested in the command line.
This commit is contained in:
parent
b44c444a0f
commit
f6a16dfa97
1 changed files with 6 additions and 5 deletions
11
SConstruct
11
SConstruct
|
|
@ -225,8 +225,9 @@ SConscript(
|
|||
duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
||||
)
|
||||
|
||||
SConscript(
|
||||
'progs/SConscript',
|
||||
variant_dir = os.path.join('progs', env['build']),
|
||||
duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
||||
)
|
||||
if 'progs' in COMMAND_LINE_TARGETS:
|
||||
SConscript(
|
||||
'progs/SConscript',
|
||||
variant_dir = os.path.join('progs', env['build']),
|
||||
duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue