From: José Fonseca Date: Mon, 15 Feb 2010 20:48:24 +0000 (+0000) Subject: scons: A less magic way of not building progs by default. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c7d39cc8319864d43c4a8143d09cbc09c7371ff;p=mesa.git scons: A less magic way of not building progs by default. The problem with the old way is that passing 'progs/subdir' as argument would fail. --- diff --git a/SConstruct b/SConstruct index 964af7e5918..ea63b90f46f 100644 --- a/SConstruct +++ b/SConstruct @@ -225,9 +225,10 @@ SConscript( 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 - ) +env.Default('src') + +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 +)