From 9e87b23519cdfea3907e8afb5f397651f1f295a9 Mon Sep 17 00:00:00 2001 From: Michael Pyne Date: Sat, 5 Dec 2009 22:35:06 +0000 Subject: [PATCH] kdesvn-build is quieter by default in async update/build mode since otherwise the messages would intermingle. Unfortunately we're also quieter even when the user select --verbose (also noted by Trever Fischer who provided a patch that was almost exactly right :) Fixed now. CCMAIL:tdfischer@fedoraproject.org svn path=/trunk/KDE/kdesdk/scripts/kdesvn-build; revision=1059157 --- kdesvn-build | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/kdesvn-build b/kdesvn-build index 33ea580..4a1c6b4 100755 --- a/kdesvn-build +++ b/kdesvn-build @@ -4381,8 +4381,12 @@ sub handle_updates return 1; } - # Be much quieter if operating multiprocess. - set_option('global', '#debug-level', WARNING) if $ipc->supportsConcurrency(); + # Be much quieter if operating multiprocess and the user has not chosen a + # different mode. + if ($ipc->supportsConcurrency() and not get_option('global', '#debug-level')) + { + set_option('global', '#debug-level', WARNING); + } note "<<< Updating Source Directories >>>"; info " "; # Add newline for aesthetics unless in quiet mode.