From f195e9a14601ca0ab1a1c38defc9fd90999bd8d4 Mon Sep 17 00:00:00 2001 From: Alexander D'souza Date: Wed, 12 Jun 2013 06:20:14 -0700 Subject: [PATCH] bug 1305: remove list of modules at end of waf clean --- wscript | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wscript b/wscript index f1ff7aa00..43fadc4e4 100644 --- a/wscript +++ b/wscript @@ -820,6 +820,10 @@ def build(bld): # build command. bld.env['PRINT_BUILT_MODULES_AT_END'] = True + # Do not print the modules built if build command was "clean" + if bld.cmd == 'clean': + bld.env['PRINT_BUILT_MODULES_AT_END'] = False + if Options.options.run: # Check that the requested program name is valid program_name, dummy_program_argv = wutils.get_run_program(Options.options.run, wutils.get_command_template(env))