From: Joey Hess Date: Mon, 20 Apr 2009 19:09:38 +0000 (-0400) Subject: remove verbose_print of buildsystem selection details X-Git-Tag: 7.3.0~84 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9ba005949259f0e9bcd9a3a094607d615be1eebd;p=debhelper.git remove verbose_print of buildsystem selection details This would be the only place in debhelper where -v enables debugging info that is not just shell commands being run. Since --list can be used to see details of build system selection, and since it will probably be obvious which one is selected in -v mode due to the commands run, I think this oddity is unnecessary. --- diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm index 0a48693..a9885bb 100644 --- a/Debian/Debhelper/Dh_Buildsystems.pm +++ b/Debian/Debhelper/Dh_Buildsystems.pm @@ -48,7 +48,6 @@ sub load_buildsystem { my ($action, $system)=@_; if (defined $system) { my $inst = create_buildsystem_instance($system); - verbose_print("Selected buildsystem (specified): ".$inst->NAME()); return $inst; } else { @@ -56,7 +55,6 @@ sub load_buildsystem { for $system (@BUILDSYSTEMS) { my $inst = create_buildsystem_instance($system, build_action=>$action); if ($inst->is_buildable()) { - verbose_print("Selected buildsystem (auto): ". $inst->NAME()); return $inst; } }