From 8c7d39cc8319864d43c4a8143d09cbc09c7371ff Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Mon, 15 Feb 2010 20:48:24 +0000 Subject: 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. --- SConstruct | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 964af7e591..ea63b90f46 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 +) -- cgit v1.2.3