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
wilder
Michael Pyne 17 years ago
parent 3698c8977b
commit 9e87b23519
  1. 8
      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.

Loading…
Cancel
Save